带有国家代码选择器的自定义 TextInputEditText
Customise TextInputEditText with a CountryCode Picker
你好,我想让编辑文本看起来像这样
我尝试在 textinputlayout 中添加国家/地区选择器,但它从未绘制布局编辑器中显示的视图
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/tv_login"
android:layout_marginTop="@dimen/x60"
android:id="@+id/phone"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
android:layout_centerHorizontal="true"
android:orientation="vertical">
<com.hbb20.CountryCodePicker
android:layout_width="@dimen/x40"
android:layout_height="wrap_content"
app:ccp_defaultNameCode="US"
app:ccp_defaultLanguage="ENGLISH"
app:ccp_arrowColor="@color/colorPrimary"
app:ccp_textGravity="RIGHT"/>
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:hint="Phone Number"
android:drawablePadding="@dimen/x16"
android:inputType="phone"
android:id="@+id/et_phone"
android:drawableStart="@drawable/ic_phone_outline"
android:layout_height="wrap_content"/>
</com.google.android.material.textfield.TextInputLayout>
国家/地区选择器总是低于文本输入布局,即使我将方向设置为水平
将android:orientation="vertical"
更改为android:orientation="horizontal"
首先需要创建背景
1-创建一个drawable资源文件,随便命名
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<solid
android:color="#F8F8F8" >
</solid>
<corners
android:radius="10dp" >
</corners>
<stroke android:width="1dp" android:color="#C2C2C3"/>
</shape>
2- 现在从 Here 创建下载巴基斯坦国旗图像并将其命名为 flag_pk
3-导入矢量资源调用图标并将其命名为tmep_call
4- 现在 copy-paste 将下面给出的代码放入您需要 editText 的布局中
真正的部分来了
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:background="@drawable/temp_background">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="15dp"
android:orientation="horizontal">
<ImageView
android:id="@+id/iconPhone"
android:layout_width="45dp"
android:layout_height="45dp"
android:src="@drawable/temp_call" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginStart="10dp"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="@font/comfortaa_bold"
android:text="Phone Number"
android:textColor="@android:color/black"
android:textStyle="bold" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageView
android:layout_width="25dp"
android:layout_height="wrap_content"
android:layout_gravity="start"
android:src="@mipmap/flag_pk" />
<TextView
android:layout_gravity="center_vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
android:fontFamily="@font/comfortaa_bold"
android:gravity="center_horizontal"
android:text="+92"
android:textColor="@android:color/black" />
<View
android:layout_width="1dp"
android:layout_height="match_parent"
android:layout_marginStart="5dp"
android:background="@android:color/darker_gray" />
<EditText
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginStart="5dp"
android:background="@null"
android:fontFamily="@font/comfortaa_bold"
android:hint="12345678900"
android:textColor="@android:color/black"
android:textColorHint="@android:color/black" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
</FrameLayout>
END 结果将如下所示
5:注意:您需要用代码选择器替换文本“+92”
你好,我想让编辑文本看起来像这样
我尝试在 textinputlayout 中添加国家/地区选择器,但它从未绘制布局编辑器中显示的视图
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/tv_login"
android:layout_marginTop="@dimen/x60"
android:id="@+id/phone"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
android:layout_centerHorizontal="true"
android:orientation="vertical">
<com.hbb20.CountryCodePicker
android:layout_width="@dimen/x40"
android:layout_height="wrap_content"
app:ccp_defaultNameCode="US"
app:ccp_defaultLanguage="ENGLISH"
app:ccp_arrowColor="@color/colorPrimary"
app:ccp_textGravity="RIGHT"/>
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:hint="Phone Number"
android:drawablePadding="@dimen/x16"
android:inputType="phone"
android:id="@+id/et_phone"
android:drawableStart="@drawable/ic_phone_outline"
android:layout_height="wrap_content"/>
</com.google.android.material.textfield.TextInputLayout>
国家/地区选择器总是低于文本输入布局,即使我将方向设置为水平
将android:orientation="vertical"
更改为android:orientation="horizontal"
首先需要创建背景
1-创建一个drawable资源文件,随便命名
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<solid
android:color="#F8F8F8" >
</solid>
<corners
android:radius="10dp" >
</corners>
<stroke android:width="1dp" android:color="#C2C2C3"/>
</shape>
2- 现在从 Here 创建下载巴基斯坦国旗图像并将其命名为 flag_pk
3-导入矢量资源调用图标并将其命名为tmep_call
4- 现在 copy-paste 将下面给出的代码放入您需要 editText 的布局中
真正的部分来了
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:background="@drawable/temp_background">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="15dp"
android:orientation="horizontal">
<ImageView
android:id="@+id/iconPhone"
android:layout_width="45dp"
android:layout_height="45dp"
android:src="@drawable/temp_call" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginStart="10dp"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="@font/comfortaa_bold"
android:text="Phone Number"
android:textColor="@android:color/black"
android:textStyle="bold" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageView
android:layout_width="25dp"
android:layout_height="wrap_content"
android:layout_gravity="start"
android:src="@mipmap/flag_pk" />
<TextView
android:layout_gravity="center_vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
android:fontFamily="@font/comfortaa_bold"
android:gravity="center_horizontal"
android:text="+92"
android:textColor="@android:color/black" />
<View
android:layout_width="1dp"
android:layout_height="match_parent"
android:layout_marginStart="5dp"
android:background="@android:color/darker_gray" />
<EditText
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginStart="5dp"
android:background="@null"
android:fontFamily="@font/comfortaa_bold"
android:hint="12345678900"
android:textColor="@android:color/black"
android:textColorHint="@android:color/black" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
</FrameLayout>
END 结果将如下所示
5:注意:您需要用代码选择器替换文本“+92”