android:layout_alignParentBottom="true" 无法将 admob 添加到底部
android:layout_alignParentBottom="true" not working to add admob to bottom
我有一个 admob、3 个文本视图和一个 admob。最后一个我想放在我 activity 的底部。现在是在最后一个文本视图之后。任何想法我应该改变什么以将 admob 放在底部? (不是在最后一个文本视图之后)
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ScrollView01"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/ad_view"
android:layout_marginBottom="0dp"
android:layout_marginEnd="0dp"
android:layout_marginLeft="0dp"
android:layout_marginRight="0dp"
android:layout_marginStart="0dp"
android:layout_marginTop="0dp"
android:orientation="horizontal">
<com.google.android.gms.ads.AdView
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:id="@+id/adView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
ads:adSize="SMART_BANNER"
ads:adUnitId="ca-app-pub-1234567">
</com.google.android.gms.ads.AdView>
</LinearLayout>
<TextView
android:id="@+id/howTo1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/ad_view"
android:layout_marginTop="10dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:onClick="onClick"
android:clickable="true"
android:text="1) Steep 1" />
<TextView
android:id="@+id/howTo2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/howTo1"
android:layout_marginTop="10dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:onClick="onClick"
android:clickable="true"
android:text="2) Steep 2" />
<TextView
android:id="@+id/howTo3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/howTo2"
android:layout_marginTop="10dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:onClick="onClick"
android:clickable="true"
android:text="3) Steep 3" />
<com.google.android.gms.ads.AdView
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:id="@+id/adView2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
ads:adSize="SMART_BANNER"
android:layout_alignParentBottom="true"
ads:adUnitId="ca-app-pub-1234567">
</com.google.android.gms.ads.AdView>
</RelativeLayout>
</ScrollView>
为什么 alignParentBottom 不起作用? admob 在最后一个 textview 之后不在底部?
因为你设置相对布局的高度为wrap_content,
您应该将其更改为 match_parent,它会起作用!!
尝试下面的代码行
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView
android:id="@+id/ScrollView01"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/ad_view"
android:layout_marginBottom="0dp"
android:layout_marginEnd="0dp"
android:layout_marginLeft="0dp"
android:layout_marginRight="0dp"
android:layout_marginStart="0dp"
android:layout_marginTop="0dp"
android:orientation="horizontal">
<com.google.android.gms.ads.AdView
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:id="@+id/adView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
ads:adSize="SMART_BANNER"
ads:adUnitId="ca-app-pub-1234567">
</com.google.android.gms.ads.AdView>
</LinearLayout>
<TextView
android:id="@+id/howTo1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/ad_view"
android:layout_marginTop="10dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:onClick="onClick"
android:clickable="true"
android:text="1) Steep 1" />
<TextView
android:id="@+id/howTo2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/howTo1"
android:layout_marginTop="10dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:onClick="onClick"
android:clickable="true"
android:text="2) Steep 2" />
<TextView
android:id="@+id/howTo3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/howTo2"
android:layout_marginTop="10dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:onClick="onClick"
android:clickable="true"
android:text="3) Steep 3" />
</RelativeLayout>
</ScrollView>
<com.google.android.gms.ads.AdView
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:id="@+id/adView2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
ads:adSize="SMART_BANNER"
android:layout_alignParentBottom="true"
ads:adUnitId="ca-app-pub-1234567">
</com.google.android.gms.ads.AdView>
</RelativeLayout>
我有一个 admob、3 个文本视图和一个 admob。最后一个我想放在我 activity 的底部。现在是在最后一个文本视图之后。任何想法我应该改变什么以将 admob 放在底部? (不是在最后一个文本视图之后)
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ScrollView01"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/ad_view"
android:layout_marginBottom="0dp"
android:layout_marginEnd="0dp"
android:layout_marginLeft="0dp"
android:layout_marginRight="0dp"
android:layout_marginStart="0dp"
android:layout_marginTop="0dp"
android:orientation="horizontal">
<com.google.android.gms.ads.AdView
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:id="@+id/adView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
ads:adSize="SMART_BANNER"
ads:adUnitId="ca-app-pub-1234567">
</com.google.android.gms.ads.AdView>
</LinearLayout>
<TextView
android:id="@+id/howTo1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/ad_view"
android:layout_marginTop="10dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:onClick="onClick"
android:clickable="true"
android:text="1) Steep 1" />
<TextView
android:id="@+id/howTo2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/howTo1"
android:layout_marginTop="10dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:onClick="onClick"
android:clickable="true"
android:text="2) Steep 2" />
<TextView
android:id="@+id/howTo3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/howTo2"
android:layout_marginTop="10dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:onClick="onClick"
android:clickable="true"
android:text="3) Steep 3" />
<com.google.android.gms.ads.AdView
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:id="@+id/adView2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
ads:adSize="SMART_BANNER"
android:layout_alignParentBottom="true"
ads:adUnitId="ca-app-pub-1234567">
</com.google.android.gms.ads.AdView>
</RelativeLayout>
</ScrollView>
为什么 alignParentBottom 不起作用? admob 在最后一个 textview 之后不在底部?
因为你设置相对布局的高度为wrap_content, 您应该将其更改为 match_parent,它会起作用!!
尝试下面的代码行
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView
android:id="@+id/ScrollView01"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/ad_view"
android:layout_marginBottom="0dp"
android:layout_marginEnd="0dp"
android:layout_marginLeft="0dp"
android:layout_marginRight="0dp"
android:layout_marginStart="0dp"
android:layout_marginTop="0dp"
android:orientation="horizontal">
<com.google.android.gms.ads.AdView
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:id="@+id/adView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
ads:adSize="SMART_BANNER"
ads:adUnitId="ca-app-pub-1234567">
</com.google.android.gms.ads.AdView>
</LinearLayout>
<TextView
android:id="@+id/howTo1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/ad_view"
android:layout_marginTop="10dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:onClick="onClick"
android:clickable="true"
android:text="1) Steep 1" />
<TextView
android:id="@+id/howTo2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/howTo1"
android:layout_marginTop="10dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:onClick="onClick"
android:clickable="true"
android:text="2) Steep 2" />
<TextView
android:id="@+id/howTo3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/howTo2"
android:layout_marginTop="10dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:onClick="onClick"
android:clickable="true"
android:text="3) Steep 3" />
</RelativeLayout>
</ScrollView>
<com.google.android.gms.ads.AdView
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:id="@+id/adView2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
ads:adSize="SMART_BANNER"
android:layout_alignParentBottom="true"
ads:adUnitId="ca-app-pub-1234567">
</com.google.android.gms.ads.AdView>
</RelativeLayout>