changelog_header_layout.xml 1.2 KB

1234567891011121314151617181920212223242526
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@+id/chg_rowheader"
  4. android:layout_width="match_parent"
  5. android:layout_height="wrap_content"
  6. android:gravity="center_vertical"
  7. android:minHeight="@dimen/chglib_material_minHeight"
  8. android:orientation="horizontal"
  9. android:paddingLeft="@dimen/chglib_material_keyline1"
  10. android:paddingRight="@dimen/chglib_material_keyline1">
  11. <!-- ChangeLog Header [Version] You have to use the id="chg_headerVersion" -->
  12. <TextView
  13. android:id="@+id/chg_headerVersion"
  14. style="?android:attr/listSeparatorTextViewStyle"
  15. android:layout_width="match_parent"
  16. android:layout_height="wrap_content"
  17. android:gravity="center_vertical"
  18. android:paddingBottom="@dimen/chglib_material_keyline1"
  19. android:paddingTop="@dimen/chglib_material_keyline1"
  20. android:textAppearance="@style/TextAppearance.Medium.Body2"
  21. android:textAllCaps="false"
  22. android:textColor="?attr/colorAccent"
  23. />
  24. </LinearLayout>