123456789101112131415161718192021222324252627 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical" android:layout_width="match_parent"
- android:layout_height="match_parent">
- <com.sheishuo.app.common.views.BaseToolbar
- android:id="@id/toolbar"
- android:layout_width="match_parent"
- android:layout_height="@dimen/action_bar_height"
- style="@style/fullToolbarStyle"/>
- <EditText
- android:id="@+id/friends_add_new_friend_ET"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:padding="8dp"
- android:layout_marginTop="16dp"
- android:hint="请输入好友ID或者手机号"/>
- <Button
- android:id="@+id/friends_add_new_friend_btn"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal"
- android:textColor="@color/white"
- android:text="添加好友"
- android:background="@drawable/btn1_selector"
- android:layout_marginTop="8dp"/>
- </LinearLayout>
|