layout_call_invite.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="wrap_content"
  6. tools:context=".LockPushActivity">
  7. <LinearLayout
  8. android:layout_width="match_parent"
  9. android:layout_height="wrap_content"
  10. android:background="@drawable/sty_radius_6_white"
  11. android:gravity="center_vertical"
  12. android:padding="10dp">
  13. <ImageView
  14. android:layout_width="wrap_content"
  15. android:layout_height="wrap_content"
  16. android:src="@mipmap/ic_launcher" />
  17. <LinearLayout
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:layout_marginLeft="10dp"
  21. android:orientation="vertical">
  22. <TextView
  23. android:layout_width="wrap_content"
  24. android:layout_height="wrap_content"
  25. android:text="OpenIM"
  26. android:textSize="15sp"
  27. android:textStyle="bold" />
  28. <TextView
  29. android:layout_width="wrap_content"
  30. android:layout_height="wrap_content"
  31. android:text="@string/receive_call_invite"
  32. android:textColor="@color/txt_shallow"
  33. android:textSize="13sp" />
  34. </LinearLayout>
  35. </LinearLayout>
  36. </FrameLayout>