changelog_row_layout.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435
  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:id="@+id/chg_row"
  5. android:layout_width="match_parent"
  6. android:layout_height="wrap_content"
  7. android:minHeight="@dimen/listPreferredItemHeightSmall"
  8. android:orientation="horizontal">
  9. <!-- ChangeLog Row [Bullet Point] You have to use the id="chg_textbullet" -->
  10. <TextView
  11. android:id="@+id/chg_textbullet"
  12. android:layout_width="wrap_content"
  13. android:layout_height="match_parent"
  14. android:gravity="center_vertical"
  15. android:paddingStart="@dimen/chglib_material_keyline1"
  16. android:paddingEnd="0dp"
  17. android:text="@string/changelog_row_bulletpoint"
  18. android:textAppearance="@style/TextAppearance.Medium.Title" />
  19. <!-- ChangeLog Row [Text] You have to use the id="chg_text" -->
  20. <TextView
  21. android:id="@+id/chg_text"
  22. android:layout_width="match_parent"
  23. android:layout_height="wrap_content"
  24. android:gravity="center_vertical"
  25. android:minHeight="@dimen/listPreferredItemHeightSmall"
  26. android:paddingStart="@dimen/chglib_material_keyline1"
  27. android:paddingTop="8dp"
  28. android:paddingEnd="@dimen/chglib_material_keyline1"
  29. android:paddingBottom="8dp"
  30. android:textAppearance="@style/TextAppearance.Regular.Body1"
  31. tools:text="Use DashClock with Android 4.2's Daydream feature; great for use with desktop docks!" />
  32. </LinearLayout>