我尝试在 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>
国家选择器总是低于 textinputlayout,即使我将方向设置为水平