Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2015
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. <FrameLayout android:width="match_parent"
  2. android:height="match_parent">
  3.  
  4. <EditText android:width="match_parent"
  5. android:height="match_parent" />
  6.  
  7. <ImageView android:width="wrap_content"
  8. android:height="wrap_content"
  9. android:margin="5dp"
  10. android:src="@drawable/ic_attach"
  11. android:layout_gravity="right|bottom" />
  12. </FrameLayout>
  13.  
  14. <EditText
  15. android:id="@+id/edit_text"
  16. android:layout_width="match_parent"
  17. android:layout_height="wrap_content"
  18. android:lines="5" />
  19.  
  20. <ImageView
  21. android:layout_alignBottom="@+id/edit_text"
  22. android:layout_alignRight="@+id/edit_text"
  23. android:layout_width="wrap_content"
  24. android:layout_height="wrap_content"
  25. android:src="@drawable/phone"/>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement