android界面代码怎么用textview显示+86和竖线,最右面edittext用来输入手机号码
时间: 2024-03-11 08:51:43 浏览: 67
可以使用 LinearLayout 或 RelativeLayout 布局来实现,在布局文件中添加一个 TextView 来显示 "+86" 和竖线,再添加一个 EditText 来输入手机号码。
以下是一个示例代码:
```xml
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center"
android:text="+86 |"
android:textColor="@android:color/black"
android:textSize="16sp" />
<EditText
android:id="@+id/phone_number_edit_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="请输入手机号码"
android:inputType="phone" />
</LinearLayout>
```
在这个示例代码中,使用 LinearLayout 布局,TextView 显示 "+86 |",设置了文字大小和颜色,EditText 设置了 id、高度和输入类型,并添加了一个提示文本。
注意,这只是一个示例代码,你可以根据自己的需求进行修改。
阅读全文