hisense_download_view.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. android:id="@+id/commondialog_background"
  3. android:layout_width="fill_parent"
  4. android:layout_height="@dimen/dimen_414"
  5. android:layout_gravity="bottom"
  6. android:background="#fafafa"
  7. android:orientation="vertical" >
  8. <LinearLayout
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content"
  11. android:layout_marginLeft="@dimen/dimen_48"
  12. android:layout_marginRight="@dimen/dimen_48"
  13. android:gravity="center"
  14. android:orientation="horizontal" >
  15. <TextView
  16. android:id="@+id/message"
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"
  19. android:layout_gravity="center_vertical"
  20. android:paddingBottom="@dimen/dimen_69"
  21. android:paddingTop="@dimen/dimen_69"
  22. android:text="@string/app_no"
  23. android:textColor="#343434"
  24. android:textSize="@dimen/dimen_48" >
  25. </TextView>
  26. </LinearLayout>
  27. <LinearLayout
  28. android:layout_width="match_parent"
  29. android:layout_height="match_parent"
  30. android:gravity="bottom"
  31. android:orientation="horizontal" >
  32. <Button
  33. android:id="@+id/button_cancel"
  34. android:layout_width="match_parent"
  35. android:layout_height="@dimen/dimen_186"
  36. android:layout_weight="1"
  37. android:background="@null"
  38. android:gravity="center"
  39. android:text="@string/cancel"
  40. android:textColor="#343434"
  41. android:textSize="@dimen/dimen_48" />
  42. <Button
  43. android:id="@+id/button_sure"
  44. android:layout_width="match_parent"
  45. android:layout_height="@dimen/dimen_186"
  46. android:layout_weight="1"
  47. android:background="@null"
  48. android:gravity="center"
  49. android:text="@string/download"
  50. android:textColor="#343434"
  51. android:textSize="@dimen/dimen_48" />
  52. </LinearLayout>
  53. </LinearLayout>