public class MainActivity extends Activity {

 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  
  
  
  
  final Intent intent = new Intent(Intent.ACTION_MAIN, null);
  intent.addCategory(Intent.CATEGORY_LAUNCHER);
  final ComponentName cn = new ComponentName("com.android.settings", "com.android.settings.wifi.WifiSettings");
  intent.setComponent(cn);
  intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
  startActivity(intent);
  
  
 }
 

}
대충 이런소스입니다.

와이파이 세팅을 불러오는 창이구요.

 

이창을 투명 액티비티로 하고싶은데

제가아는 방법은

android:theme="@android:style/Theme.Translucent.NoTitleBar"

매니패스트xml에서 이러한설정주는것말고는 없습니다.

혹시 저 세팅창을 투명화할수 없을까요? 질문드려봅니다.