我想同时使用EditText
和Spinner
。 Spinner
应该在EditText的末尾并带有下划线。如何在一行中设置Spinner
的下划线和EditText
的下划线?
以下内容不是整个xml文件,而是一部分:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<Spinner
android:id="@+id/spinner_currency"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_alignParentBottom="true">
</Spinner>
<com.wrapp.floatlabelededittext.FloatLabeledEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_toLeftOf="@id/spinner_currency"
android:layout_toStartOf="@id/spinner_currency"
app:fletTextAppearance="@style/FloatLabelEditTextStyle">
<com.rengwuxian.materialedittext.MaterialEditText
android:id="@+id/material_edit_text_amount"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="sans-serif"
android:hint="Amount"
android:inputType="number"
android:maxLength="15"
android:textColor="@color/colorPrimaryText"
android:textSize="16sp"
app:met_helperTextAlwaysShown="true"
app:met_helperTextColor="@color/colorSecondaryText"
app:met_iconPadding="0dp"
tools:targetApi="jelly_bean" />
</com.wrapp.floatlabelededittext.FloatLabeledEditText>
</RelativeLayout>
答案 0 :(得分:1)
您可以使用FrameLayout代替RelativeLayout。如您所知,您在FrameLayout中创建的最后一个对象位于顶部。
注意:无论使用哪种微调器。我喜欢材料微调器,并且已经使用过。
这似乎是this 尝试这样;
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.wrapp.floatlabelededittext.FloatLabeledEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp">
<com.rengwuxian.materialedittext.MaterialEditText
android:id="@+id/material_edit_text_amount"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="sans-serif"
android:hint="Amount"
android:inputType="number"
android:maxLength="15"
android:textSize="16sp"
app:met_helperTextAlwaysShown="true"
app:met_iconPadding="0dp"
tools:targetApi="jelly_bean" />
</com.wrapp.floatlabelededittext.FloatLabeledEditText>
<com.jaredrummler.materialspinner.MaterialSpinner
android:id="@+id/spinner_currency"
android:layout_gravity="end"
android:layout_marginRight="16dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:entries="@array/actions">
</com.jaredrummler.materialspinner.MaterialSpinner>