protected void onCreate(Bundle savedInstanceState) { requestWindowFeature(Window.FEATURE_NO_TITLE); getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN); setTheme(R.style.KTheme_Popup); super.onCreate(savedInstanceState); setContentView(R.layout.androidutilmain); }

이렇게해서 onCreative전에 호출하고 setContent도  setTheme 한후에 호출하는데요

즉 테마는 적용이 되지만.

팝업에 관한 테마는 뒷쪽 배경이  검정색으로 나오네요.  올래 팝업은 뒤에 살짝 뒷엑티비티가 보이잖아요



소스상에서 말고  매니페스트에서 theme 설정하면  뒤쪽 엑티비티는 잘보여요  똑같은 테마를 소수상에서만 추가하면
다른 쪽은 다먹히지만  배경만 뒤쪽 에티비트가 안보이네요 (살짝)  이거 해결방법이있나요?>



pop.png
       <activity android:name=".wow"  android:theme="@style/KTheme.Popup"></activity>








pop2.png
@Override
protected void onCreate(Bundle savedInstanceState) {
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);
setTheme(R.style.KTheme_Popup);
super.onCreate(savedInstanceState);
setContentView(R.layout.androidutilmain);
}



왜안되죠 ㅠㅠ






<style name="KTheme.Popup" parent="android:style/Theme.Dialog">
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsTranslucent">true</item>
  <item name="android:backgroundDimAmount">0</item> 
  <item name="android:windowAnimationStyle">@android:style/Animation.Translucent</item>
<item name="android:windowBackground">@android:drawable/alert_dark_frame</item>
</style>