ボタンのみを含むレイアウトを作成したい、レイアウトをもっと透明にしたい、「そこにない」ようにしたい、つまり、レイアウトをフルサイズではない「ウィンドウ」にしたいボタンのサイズのみなので、アプリの背後で開いているアプリを引き続き使用できます。
私は試した :
<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>
背景は本当に透明ですが、まだレイヤーであり、背面のアプリは使用できません.