我正试图使我的Activity
半透明,即透视,但它不起作用。它总是不透明的。到目前为止,这是我的代码:
public class SvetlinTranslucentActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Window w = getWindow();
w.setFormat(PixelFormat.RGBA_8888);
w.addFlags(WindowManager.LayoutParams.FLAG_DIM_BEHIND);
w.setBackgroundDrawable(new ColorDrawable(0x00FF0000));
}
}
我一直在查看官方API演示中的代码,但仍然没有成功。
答案 0 :(得分:2)
我在布局中使用android:background
<RelativeLayout android:id="@+id/RelativeLayout01"
android:layout_width="fill_parent" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
android:background="#D0000000">
当然可以看到它,我可以看到它下面的其他活动。
答案 1 :(得分:0)
我会选择AndroidManifest.xml,查找目标活动,然后设置:android:theme="@android:style/Theme.Translucent"