Advertisement
dhohoney

HomeFragment.xml

Mar 31st, 2020
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:orientation="vertical"
  7. tools:context=".HomeFragment">
  8.  
  9. <TextView
  10. android:layout_width="match_parent"
  11. android:layout_height="wrap_content"
  12. android:layout_margin="16dp"
  13. android:text="@string/hello_home_fragment" />
  14.  
  15. <Button
  16. android:id="@+id/btn_category"
  17. android:layout_width="match_parent"
  18. android:layout_height="wrap_content"
  19. android:layout_marginLeft="16dp"
  20. android:layout_marginRight="16dp"
  21. android:text="@string/to_category" />
  22.  
  23. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement