zzz_offline_game_gift.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:orientation="vertical">
  7. <RelativeLayout
  8. android:layout_width="match_parent"
  9. android:layout_height="50dip"
  10. android:background="@color/zzz_title_color">
  11. <ImageView
  12. android:id="@+id/zzz_back"
  13. android:layout_width="wrap_content"
  14. android:layout_height="@dimen/zzz_title_height"
  15. android:layout_marginLeft="@dimen/zzz_second_title_back_marginLeft"
  16. android:src="@drawable/zzz_back_src_light"/>
  17. <TextView
  18. android:id="@+id/zzz_offline_game_title"
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. android:textColor="@color/zzz_title_text_color"
  22. android:layout_marginLeft="@dimen/zzz_second_title_back_marginLeft"
  23. android:textSize="18dip"
  24. android:layout_centerVertical="true"
  25. android:layout_toRightOf="@+id/zzz_back"/>
  26. </RelativeLayout>
  27. <RelativeLayout
  28. android:layout_width="match_parent"
  29. android:layout_height="match_parent">
  30. <LinearLayout
  31. android:id="@+id/zzz_content"
  32. android:layout_width="match_parent"
  33. android:layout_height="match_parent"
  34. android:orientation="vertical"/>
  35. <View
  36. android:layout_width="match_parent"
  37. android:layout_height="@dimen/zzz_title_gradient_height"
  38. android:background="@drawable/zzz_title_gradient"/>
  39. </RelativeLayout>
  40. </LinearLayout>