team_announce_head_view.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout 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/tip_bar_yellow_background"
  6. android:paddingBottom="5dp"
  7. android:paddingLeft="12dp"
  8. android:paddingRight="10dp"
  9. android:paddingTop="5dp"
  10. android:visibility="visible" >
  11. <ImageButton
  12. android:id="@+id/setting_tip_close_btn"
  13. android:layout_width="wrap_content"
  14. android:layout_height="wrap_content"
  15. android:layout_alignParentRight="true"
  16. android:layout_centerVertical="true"
  17. android:background="@drawable/g_ic_close_yellow_selector" />
  18. <LinearLayout
  19. android:layout_width="match_parent"
  20. android:layout_height="wrap_content"
  21. android:layout_centerVertical="true"
  22. android:layout_toLeftOf="@id/setting_tip_close_btn"
  23. android:orientation="vertical" >
  24. <TextView
  25. android:id="@+id/team_announce_body_label"
  26. android:layout_width="wrap_content"
  27. android:layout_height="wrap_content"
  28. android:ellipsize="end"
  29. android:lineSpacingExtra="2dp"
  30. android:maxLines="2"
  31. android:textColor="#796413"
  32. android:textSize="12sp" />
  33. </LinearLayout>
  34. </RelativeLayout>