我想在我的应用程序中添加一个必须可点击的视图,我尝试了一个对话框,但是它阻止了游戏的执行,我还试图向WindowManager添加一个视图,但它不可点击。如何创建“横幅广告”视图?
答案 0 :(得分:0)
根据我的理解,您希望在游戏视图上方放置banner view
。尝试使用FrameLayout
。以下是xml示例,希望它可以提供帮助:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent">
<!-- Replace this with your banner -->
<ImageView android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:src="@drawable/icon"/>
<TextView android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="Replace this with your game view"/>
</FrameLayout>