nim_time_text_view_layout.xml 890 B

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="wrap_content"
  5. android:gravity="center"
  6. android:orientation="vertical" >
  7. <TextView
  8. android:id="@+id/textViewTime"
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:layout_marginBottom="@dimen/bubble_time_layout_margin_bottom"
  12. android:layout_marginTop="@dimen/bubble_time_layout_margin_top"
  13. android:background="@drawable/nim_bg_message_tip"
  14. android:gravity="center"
  15. android:paddingLeft="7dip"
  16. android:paddingRight="7dip"
  17. android:textColor="#ffffff"
  18. android:textSize="12sp"
  19. android:textStyle="bold"
  20. android:visibility="gone" />
  21. </LinearLayout>