Android Studio reklam
17.03.2019 - 05:55
Android studio'da uygulamama başarıyla reklam ekledim fakat sorun şu ki reklam uygulamanın üst tarafında çıkıyor alt tarafda çıkması için ne yapmalıyım uygulamanın alt kısmında XML
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.emir.ozdemir.MainActivity">
<FrameLayout
android:id="@+id/fragment_holder"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="?attr/actionBarSize" />
<com.google.android.gms.ads.AdView
android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
ads:adSize="BANNER"
ads:adUnitId="@string/banner_ad_unit_id">
</com.google.android.gms.ads.AdView>
<include layout="@layout/toolbar_layout" />
</FrameLayout>
<include layout="@layout/drawer_layout"/>
</android.support.v4.widget.DrawerLayout>
7
Görüntülenme
0 Beğeni