dialog_sync_failed.xml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <LinearLayout
  2. xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="fill_parent"
  4. android:layout_height="wrap_content"
  5. android:background="@drawable/section"
  6. android:orientation="vertical"
  7. android:layout_margin="20dp">
  8. <TextView
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content"
  11. android:text="@string/dialog_sync_failed_title"
  12. android:textAppearance="?android:attr/textAppearanceLarge"
  13. android:textStyle="bold"
  14. android:background="@drawable/section_title"
  15. android:paddingBottom="4dp"
  16. android:paddingEnd="10dp"
  17. android:paddingLeft="20dp"
  18. android:paddingRight="10dp"
  19. android:paddingStart="20dp"
  20. android:paddingTop="4dp"
  21. android:textColor="@color/section_title"/>
  22. <TextView
  23. android:layout_width="match_parent"
  24. android:layout_height="wrap_content"
  25. android:textAppearance="@android:style/TextAppearance.Medium"
  26. android:text="@string/dialog_sync_failed_text"
  27. android:layout_margin="8dp"
  28. android:padding="7dp"
  29. android:background="@drawable/entry"/>
  30. <Button
  31. android:id="@+id/bt_dialog_sync_failed_close"
  32. android:layout_margin="5dp"
  33. android:text="@string/dialog_sync_failed_close"
  34. android:background="@drawable/button_selector"
  35. android:textStyle="bold"
  36. android:textColor="@color/input_text_color"
  37. android:layout_width="wrap_content"
  38. android:layout_height="wrap_content"
  39. android:layout_gravity="center_horizontal"/>
  40. </LinearLayout>