page_2.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent">
  5. <android.support.v7.widget.Toolbar
  6. android:id="@+id/toolbar"
  7. android:layout_width="match_parent"
  8. android:layout_height="?attr/actionBarSize"
  9. android:background="@color/colorPrimary">
  10. <LinearLayout
  11. android:layout_width="match_parent"
  12. android:layout_height="?attr/actionBarSize"
  13. android:background="@color/colorPrimary"
  14. android:gravity="center_vertical"
  15. android:orientation="horizontal">
  16. <com.joanzapata.iconify.widget.IconTextView
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"
  19. android:text="{fa-home 20sp}"
  20. android:textColor="#FFFFFF" />
  21. <TextView
  22. android:layout_width="wrap_content"
  23. android:layout_height="wrap_content"
  24. android:layout_marginStart="4dp"
  25. android:layout_marginLeft="4dp"
  26. android:text=""
  27. android:textColor="#FFFFFF"
  28. android:textSize="18sp" />
  29. </LinearLayout>
  30. </android.support.v7.widget.Toolbar>
  31. </android.support.constraint.ConstraintLayout>