在我的应用程序中,我将显示网站列表,单击每个项目,我将在我的应用程序(“详细信息”页)中显示特定的网站。我想知道在详细信息页面中显示横幅广告(AdMob)是否有任何问题,例如侵犯知识产权...等
简而言之,我想避免我的Google Play商店帐户拒绝应用。
附加我的“详细信息”页面的XML。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ProgressBar
android:id="@+id/progressBar"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="match_parent"
android:layout_height="3dp"
android:layout_alignParentTop="true"
android:layout_centerVertical="true"
android:indeterminate="true"
android:indeterminateTint="@color/tab_checked"
android:max="100"
android:progress="50"
android:visibility="visible" />
<WebView
android:id="@+id/webview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/cv_main"
android:layout_below="@+id/progressBar"
android:layout_weight="1">
</WebView>
<com.google.android.gms.ads.AdView
android:id="@+id/adView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_gravity="center"
android:orientation="vertical"
android:visibility="visible">
</com.google.android.gms.ads.AdView>
</RelativeLayout>