friends_add_new_friend.xml 1.1 KB

1234567891011121314151617181920212223242526
  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:layout_width="match_parent"
  7. android:layout_height="@dimen/action_bar_height"
  8. style="@style/fullToolbarStyle"/>
  9. <EditText
  10. android:id="@+id/friends_add_new_friend_ET"
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:padding="8dp"
  14. android:layout_marginTop="16dp"
  15. android:hint="请输入好友ID或者手机号"/>
  16. <Button
  17. android:id="@+id/friends_add_new_friend_btn"
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:layout_gravity="center_horizontal"
  21. android:textColor="@color/white"
  22. android:text="添加好友"
  23. android:background="@drawable/btn1_selector"
  24. android:layout_marginTop="8dp"/>
  25. </LinearLayout>