像显示对话框时的暗淡背景

时间:2011-10-11 13:56:48

标签: android layout dialog window screen

我希望获得与显示模式对话框时相同的效果,即变暗的背景,不能与之交互,但要有一个布局元素,或更多,活动“在其余的顶部”。例如:我点击一个图标,左侧显示一个详细信息的面板,你可以在该面板上做一些事情,屏幕的其余部分变暗,不活动。我怎样才能做到这一点?感谢。

1 个答案:

答案 0 :(得分:1)

您可以在某些元素上将背景设置为透明的情况下启动新活动,例如:

<ScrollView
 android:gravity="left"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
 android:background="@android:color/transparent">

Android API演示中还有一个TranslucentActivity示例:

http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/app/TranslucentActivity.html