riyanwenas

activity_scanner.xml

Feb 15th, 2019
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent">
  6.  
  7. <FrameLayout
  8. android:id="@+id/content_frame"
  9. android:layout_width="match_parent"
  10. android:layout_height="match_parent"></FrameLayout>
  11.  
  12. <android.support.v7.widget.Toolbar
  13. android:id="@+id/toolbar"
  14. android:layout_width="match_parent"
  15. android:layout_height="wrap_content"
  16. android:layout_gravity="top"
  17. android:background="@color/actionbar_opacity"
  18. android:minHeight="?attr/actionBarSize"
  19. app:theme="@style/TransparentToolbar" />
  20.  
  21. <Button
  22. android:id="@+id/buttonNextScan"
  23. android:layout_width="wrap_content"
  24. android:layout_height="wrap_content"
  25. android:layout_gravity="center_horizontal|bottom"
  26. android:layout_marginBottom="80dp"
  27. android:onClick="resume"
  28. android:text="@string/next_scan"
  29. android:textColor="@android:color/black"
  30. android:visibility="gone" />
  31.  
  32. </FrameLayout>
Advertisement
Add Comment
Please, Sign In to add comment