我有一个admob,3个textviews和一个admob再次。最后一个我想把我的活动放在最底层。现在是在最后一次文本视图之后。任何想法我应该改变什么才能将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之后不是在底部?
答案 0 :(得分:1)
因为您将相对布局的高度设置为wrap_content, 你应该把它改成match_parent,它会工作!!
答案 1 :(得分:1)
尝试以下代码行
<?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>