我有以下布局:
<RelativeLayout>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="200dip"
android:layout_alignParentBottom="true" >
</LinearLayout>
</RelativeLayout>
我想让线性布局完全透明,这意味着活动堆栈上前一个活动的内容应该在线性布局区域中可见。
我尝试使用 setAlpha(0) 和线性布局;它确实使它透明,但它在线性布局区域中显示活动背景颜色。
我还尝试将活动的 android:theme 设置为 @android:style/Theme.Translucent.NoTitleBar,但这会使整个活动显示上一个活动的内容。
任何人都可以提出一种方法吗?
谢谢。