私が達成したいのは、RelativeLayout コンテンツの 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"
LinearLayout に。背景は私が望んでいたように透明になりましたが、RelativeLayout 内の TextViews も透明です..それを変更するにはどうすればよいですか?