Guest User

Untitled

a guest
Jan 22nd, 2018
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.35 KB | None | 0 0
  1. <RelativeLayout xmlns:ads="http://schemas.android.com/apk/res-auto"
  2. xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@+id/relative"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:background="#ffffff">
  7.  
  8.  
  9. <android.support.v7.widget.RecyclerView
  10. android:id="@+id/list"
  11. android:layout_width="match_parent"
  12. android:layout_height="match_parent"
  13. android:layout_above="@+id/rel"
  14. android:background="@drawable/bgg"
  15. android:overScrollMode="never"
  16. android:padding="10dp" >
  17.  
  18. </android.support.v7.widget.RecyclerView>
  19.  
  20.  
  21.  
  22. <RelativeLayout
  23. android:id="@+id/rel"
  24. android:layout_width="match_parent"
  25. android:layout_height="wrap_content"
  26. android:layout_alignParentBottom="true"
  27. android:background="#ffffff">
  28.  
  29. <ImageView
  30. android:id="@+id/send"
  31. android:layout_width="35dp"
  32. android:layout_height="wrap_content"
  33. android:layout_alignParentEnd="true"
  34. android:layout_centerVertical="true"
  35. android:layout_marginEnd="5dp"
  36. android:paddingEnd="5dp"
  37. android:paddingStart="5dp"
  38. android:src="@drawable/pekaa" />
  39.  
  40.  
  41. <EditText
  42. android:id="@+id/text"
  43. android:layout_width="match_parent"
  44. android:layout_height="wrap_content"
  45. android:layout_above="@+id/adView"
  46. android:layout_alignParentStart="true"
  47. android:background="@null"
  48. android:cursorVisible="true"
  49. android:gravity="center_vertical"
  50. android:hint="Message..."
  51. android:padding="10dp"
  52. android:textColor="#000000"
  53. android:textColorHint="@android:color/darker_gray" />
  54.  
  55. <com.google.android.gms.ads.AdView
  56. android:id="@+id/adView"
  57. android:layout_width="wrap_content"
  58. android:layout_height="wrap_content"
  59. android:layout_alignParentBottom="true"
  60. android:layout_centerHorizontal="true"
  61. android:layout_marginBottom="104dp"
  62. ads:adSize="BANNER"
  63. ads:adUnitId="ca-app-pub-3940256099942544/6300978111"></com.google.android.gms.ads.AdView>
  64.  
  65.  
  66. </RelativeLayout>
  67.  
  68.  
  69. </RelativeLayout>
Add Comment
Please, Sign In to add comment