几天前,我正在搜索一个带有“标签”的edittext实现,用于用户名输入。我从 Stackoverflow 中找到了以下 xml 代码。
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp">
<EditText
android:id="@+id/username_editText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="15sp"
android:hint="Πατήστε εδώ"
android:inputType="text"
android:maxLength="20"
android:paddingLeft="125dp"
tools:ignore="HardcodedText" >
<requestFocus />
</EditText>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_marginBottom="0dp"
android:layout_marginLeft="0dp"
android:layout_marginRight="0dp"
android:paddingLeft="12dp"
android:text="Όνομα χρήστη:"
android:textColor="@color/grey"
android:textSize="15sp"
tools:ignore="HardcodedText" />
</FrameLayout>
结果是我需要的,除了一件事。edittext 和 textview 都没有在它们的 y 轴上对齐,文本的底部没有在小分辨率下对齐。我从 3.7 英寸得到的截图:
我画了一条红线,你可以看到它们没有对齐。有什么帮助吗?