friends_add_new_friend.xml 1.1 KB

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical" android:layout_width="match_parent"
  4. android:layout_height="match_parent">
  5. <com.sheishuo.app.common.views.BaseToolbar
  6. android:id="@id/toolbar"
  7. android:layout_width="match_parent"
  8. android:layout_height="@dimen/action_bar_height"
  9. style="@style/fullToolbarStyle"/>
  10. <EditText
  11. android:id="@+id/friends_add_new_friend_ET"
  12. android:layout_width="match_parent"
  13. android:layout_height="wrap_content"
  14. android:padding="8dp"
  15. android:layout_marginTop="16dp"
  16. android:hint="请输入好友ID或者手机号"/>
  17. <Button
  18. android:id="@+id/friends_add_new_friend_btn"
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. android:layout_gravity="center_horizontal"
  22. android:textColor="@color/white"
  23. android:text="添加好友"
  24. android:background="@drawable/btn1_selector"
  25. android:layout_marginTop="8dp"/>
  26. </LinearLayout>