我想要在屏幕頂部(4)對齊的另一個活動(1)上進行半透明方面的活動(2)。填充整個屏幕的半透明活動
我曾嘗試通過將這些主題活動編號2:
<style name="Theme.CustomDialog" parent="android:style/Theme.Dialog">
<item name="android:windowBackground">@android:color/black</item>
</style>
<style name="CustomTheme">
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:background">@android:color/transparent</item>
<item name="android:windowIsFloating">true</item>
<item name="android:windowNoTitle">true</item>
</style>
但結果始終是3
如果我在CustomTheme
結果是2集<item name="android:windowIsFloating">false</item>
。
有人可以告訴我如何得到4嗎?謝謝!
UPDATE:這是我的活動2佈局:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" android:background="#0000">
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" android:background="#FFFFFF">
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Menu" android:layout_centerHorizontal="true"/>
</RelativeLayout>
</RelativeLayout>
http:// stackoverflow。com/questions/36305283/how-to-make-translucent-activity – Mangesh