You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

activity_stop_picker.xml 1.3KB

12345678910111213141516171819202122232425262728293031
  1. <RelativeLayout
  2. xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. xmlns:ads="http://schemas.android.com/apk/res-auto"
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent"
  8. android:paddingBottom="@dimen/activity_vertical_margin"
  9. android:paddingLeft="@dimen/activity_horizontal_margin"
  10. android:paddingRight="@dimen/activity_horizontal_margin"
  11. android:paddingTop="@dimen/activity_vertical_margin"
  12. app:layout_behavior="@string/appbar_scrolling_view_behavior"
  13. tools:context=".ui.activities.StopPickerActivity">
  14. <FrameLayout
  15. android:id="@+id/container"
  16. android:layout_width="match_parent"
  17. android:layout_height="match_parent"
  18. android:layout_above="@+id/adView">
  19. </FrameLayout>
  20. <com.google.android.gms.ads.AdView
  21. android:id="@+id/adView"
  22. android:layout_width="wrap_content"
  23. android:layout_height="wrap_content"
  24. android:layout_centerHorizontal="true"
  25. android:layout_alignParentBottom="true"
  26. ads:adSize="BANNER"
  27. ads:adUnitId="@string/banner_ad_unit_id">
  28. </com.google.android.gms.ads.AdView>
  29. </RelativeLayout>