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.0KB

123456789101112131415161718192021222324252627
  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. app:layout_behavior="@string/appbar_scrolling_view_behavior"
  9. tools:context=".ui.activities.StopPickerActivity">
  10. <FrameLayout
  11. android:id="@+id/container"
  12. android:layout_width="match_parent"
  13. android:layout_height="match_parent"
  14. android:layout_above="@+id/adView">
  15. </FrameLayout>
  16. <com.google.android.gms.ads.AdView
  17. android:id="@+id/adView"
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:layout_centerHorizontal="true"
  21. android:layout_alignParentBottom="true"
  22. ads:adSize="BANNER"
  23. ads:adUnitId="@string/banner_ad_unit_id">
  24. </com.google.android.gms.ads.AdView>
  25. </RelativeLayout>