我想创建一个只包含一个按钮的布局,我希望布局更加透明,我希望它“不要在那里”,换句话说,我希望我的布局只是一个不完整的尺寸'窗口',但只有按钮大小,所以我将能够继续使用我的应用程序后面打开的任何应用程序。
我试过了:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:windowBackground="@android:color/transparent"
android:windowIsTranslucent="true" >
<ToggleButton android:id="@+id/lockButton"
style="@style/lockToggle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true">
</ToggleButton>
背景非常透明,但仍然是一个图层,后面的应用程序无法使用。