我想要实现的是具有类似于对话框的透明度的活动,以及相对布局内容的 100% 可见性。这是活动的 xml:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="50dip"
android:layout_marginLeft="8dip"
android:layout_marginRight="8dip"
android:layout_marginTop="50dip">
(...)
</RelativeLayout>
</LinearLayout>
这很明显:
<activity
android:name="com.acentic.rcontrol.activities.MyActivity"
android:theme="@android:style/Theme.Translucent.NoTitleBar" >
</activity>
现在背景仍然可见,我做错了什么?
--- 编辑:我补充说
android:background="#c0000000"
到线性布局。现在背景是我想要的透明,而且RelativeLayout里面的TextViews也是透明的..如何改变它?