avchat_refuse_receive_layout.xml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:paddingLeft="15dp"
  4. android:paddingRight="15dp"
  5. android:orientation="horizontal"
  6. android:layout_width="match_parent"
  7. android:layout_height="wrap_content">
  8. <TextView
  9. android:gravity="center"
  10. android:id="@+id/refuse"
  11. android:layout_width="0dp"
  12. android:layout_weight="1"
  13. android:layout_height="wrap_content"
  14. android:text="@string/avchat_refuse"
  15. android:textSize="17sp"
  16. android:textColor="@color/white"
  17. android:background="@drawable/avchat_refuse_bg_selector"
  18. />
  19. <TextView
  20. android:layout_marginLeft="5dp"
  21. android:gravity="center"
  22. android:id="@+id/receive"
  23. android:layout_width="0dp"
  24. android:layout_weight="1"
  25. android:layout_height="wrap_content"
  26. android:text="@string/avchat_receive"
  27. android:textSize="@dimen/text_size_17"
  28. android:textColor="@color/white"
  29. android:background="@drawable/avchat_receive_bg_selector"
  30. />
  31. </LinearLayout>