可以将窗口设置为不可触摸,这意味着您只需使用以下代码将整个窗口设置为不可触摸即可单击该活动后面的任何内容:
getWindow().addFlags(WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE);
现在我的问题是:是否可以只使RelativeLayout 不可触摸,我的意思是用户可以触摸RelativeLayout 后面的任何东西,但他将无法触摸该RelativeLayout 中Button 后面的任何东西。
这是我的xml:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/rl"
style="@android:color/transparent"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="44dp"
android:text="Button" />
</RelativeLayout>
我需要相对布局不可触摸,用户可以触摸它后面的任何东西。我只需要相对布局中的按钮是可触摸的
因此,Button 可触摸,RelativeLayout 不可触摸。我可以触摸按钮,但我不能触摸 RelativeLayout 我只触摸它后面的东西。
当使用
getWindow().addFlags(WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE);
整个窗口时,按钮也被设置为不可触摸,这不是我想要的。
我希望我的问题是可以理解的。
编辑:
我要做的只是在另一个应用程序(例如 Skype)上显示一个按钮,我只希望该按钮可以与 Skype 应用程序一起单击。