Change-Id: Ie73ce22c4a6a517812b7889bff8550d356e30a30 Signed-off-by: Ricky Barrette <rickbarrette@gmail.com>
30 lines
1.1 KiB
XML
30 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent" >
|
|
|
|
<com.google.ads.AdView
|
|
android:id="@+id/ad"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
ads:adSize="BANNER"
|
|
ads:adUnitId="a14bbdf596be063"
|
|
android:visibility="gone" />
|
|
|
|
<com.jakewharton.android.viewpagerindicator.TitlePageIndicator
|
|
android:id="@+id/indicator"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="10dip" />
|
|
|
|
<com.TwentyCodes.android.FindMyCarLib.UI.CustomViewPager
|
|
android:id="@+id/pager"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_above="@id/ad"
|
|
android:layout_below="@id/indicator"
|
|
android:background="#ffffff" />
|
|
|
|
</RelativeLayout> |