在Android中创建仅带按钮和透明背景的布局

时间:2013-03-29 13:17:58

标签: android layout transparent

我想创建一个只包含一个按钮的布局,我希望布局更加透明,我希望它“不要在那里”,换句话说,我希望我的布局只是一个不完整的尺寸'窗口',但只有按钮大小,所以我将能够继续使用我的应用程序后面打开的任何应用程序。

我试过了:

<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>

背景非常透明,但仍然是一个图层,后面的应用程序无法使用。

1 个答案:

答案 0 :(得分:1)

由于您需要操作其他应用程序,当然需要服务

尝试检查

Creating a system overlay window (always on top)