activity_check_eula.xml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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:background="#fff0f0f0"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent">
  7. <androidx.appcompat.widget.Toolbar
  8. android:textAppearance="@style/TextAppearance.Widget.AppCompat.Toolbar.Title"
  9. android:textColor="#ff000000"
  10. android:id="@+id/toolbar"
  11. android:background="@drawable/underline"
  12. android:layout_width="match_parent"
  13. android:layout_height="wrap_content"
  14. android:minHeight="?attr/actionBarSize">
  15. <TextView
  16. android:textAppearance="@style/TextAppearance.Widget.AppCompat.Toolbar.Title"
  17. android:layout_gravity="center"
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:text="@string/Use_Information_Title" />
  21. </androidx.appcompat.widget.Toolbar>
  22. <com.epson.mobilephone.common.license.RestoreScrollView
  23. android:id="@+id/eulaCheckMainScrollView"
  24. android:layout_width="match_parent"
  25. android:layout_height="0dp"
  26. android:layout_weight="1">
  27. <TextView
  28. android:textColor="#ff101010"
  29. android:id="@+id/eulaTextView"
  30. android:background="#fff0f0f0"
  31. android:padding="10dp"
  32. android:layout_width="match_parent"
  33. android:layout_height="wrap_content"
  34. android:text="TextView"
  35. style="@style/elementViewGroup" />
  36. </com.epson.mobilephone.common.license.RestoreScrollView>
  37. <LinearLayout
  38. android:orientation="horizontal"
  39. android:layout_width="match_parent"
  40. android:layout_height="wrap_content"
  41. android:layout_marginTop="2dp"
  42. style="?android:attr/buttonBarStyle">
  43. <Button
  44. android:id="@+id/eulaDisagreeButton"
  45. android:text="@string/Disagree_License"
  46. style="@style/bottom_button" />
  47. <Button
  48. android:id="@+id/eulaAgreeButton"
  49. android:text="@string/Agree_License"
  50. style="@style/bottom_button" />
  51. </LinearLayout>
  52. </LinearLayout>