如何在Android屏幕底部放置广告

时间:2017-10-19 18:31:30

标签: mobile admob banner startapp

我想在屏幕底部放置广告横幅startapp。它一直出现在顶部。我希望它在屏幕的底部,你在这里找到我的代码..
我试图将广告定位在屏幕的底部,但我尝试的任何内容似乎都无法正常工作。

以下是布局的XML代码,非常感谢。

    <android.support.constraint.ConstraintLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@mipmap/pictureone"
        tools:context="org.sna.myapplication.MainActivity">

    <LinearLayout
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_gravity="center"
        android:background="@mipmap/pictureone"
        android:weightSum="10"
        android:clickable="false">

        <TextView
            android:layout_width="340dp"
            android:layout_height="wrap_content"
            android:text="click NEXT  to start the application"
            android:id="@+id/textView3"
            android:layout_gravity="center_horizontal"
            android:textColor="#ffffff"
            android:textSize="30dp"
            android:layout_weight="1.58"
            android:textAlignment="center" />

        <ImageView
            android:layout_width="150dp"
            android:layout_height="wrap_content"
            android:id="@+id/imageView6"
            android:layout_gravity="center_horizontal"
            android:layout_weight="1"
            android:background="@mipmap/oussama"
            android:layout_marginTop="1dp"
            android:clickable="true"
            android:onClick="next" />

    </LinearLayout>

<com.startapp.android.publish.ads.banner.Banner
    android:id="@+id/startAppBanner"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="true"
    tools:layout_editor_absoluteY="0dp"
    tools:layout_editor_absoluteX="0dp" />   
</android.support.constraint.ConstraintLayout>   

1 个答案:

答案 0 :(得分:0)

将横幅放在LinearLayout

<LinearLayout
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_gravity="center"
    android:background="@mipmap/pictureone"
    android:weightSum="10"
    android:clickable="false">

    <TextView
        android:layout_width="340dp"
        android:layout_height="wrap_content"
        android:text="click NEXT  to start the application"
        android:id="@+id/textView3"
        android:layout_gravity="center_horizontal"
        android:textColor="#ffffff"
        android:textSize="30dp"
        android:layout_weight="1.58"
        android:textAlignment="center" />

    <ImageView
        android:layout_width="150dp"
        android:layout_height="wrap_content"
        android:id="@+id/imageView6"
        android:layout_gravity="center_horizontal"
        android:layout_weight="1"
        android:background="@mipmap/oussama"
        android:layout_marginTop="1dp"
        android:clickable="true"
        android:onClick="next" />

    <com.startapp.android.publish.ads.banner.Banner
        android:id="@+id/startAppBanner"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        tools:layout_editor_absoluteY="0dp"
        tools:layout_editor_absoluteX="0dp" />

</LinearLayout>