fragment_myanimelist.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:padding="10dp">
  7. <LinearLayout
  8. android:layout_width="wrap_content"
  9. android:layout_height="wrap_content">
  10. <TextView
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"
  13. android:text="MyAnimeList title:" />
  14. <TextView
  15. android:layout_width="wrap_content"
  16. android:layout_height="wrap_content"
  17. android:id="@+id/myanimelist_title" />
  18. </LinearLayout>
  19. <LinearLayout
  20. android:layout_width="wrap_content"
  21. android:layout_height="wrap_content">
  22. <TextView
  23. android:layout_width="wrap_content"
  24. android:layout_height="wrap_content"
  25. android:text="Last chapter read" />
  26. <EditText
  27. android:layout_width="56dp"
  28. android:layout_height="wrap_content"
  29. android:inputType="number"
  30. android:ems="10"
  31. android:id="@+id/myanimelist_last_chapter_read"/>
  32. <Button
  33. android:layout_width="wrap_content"
  34. android:layout_height="wrap_content"
  35. android:text="@string/action_update"
  36. android:id="@+id/update_button"/>
  37. </LinearLayout>
  38. </LinearLayout>