что я хочу достичь, это активность с диалоговой прозрачностью с 100% видимостью содержимого RelativeLayout. Это активность 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>
В настоящий момент все еще видно, что я делаю неправильно?
--- EDIT: Я добавил
android:background="#c0000000"
в LinearLayout. Теперь фон прозрачен, как я хотел, но также и TextViews внутри RelativeLayout также прозрачны.. как его изменить?