我想将 a 中的TextView
文本与EditText
它正下方的文本对齐。如果不使用填充技巧,这可能吗?
如果不是,这是因为它不鼓励吗?我可以看到它被劝阻,因为它可能会使用户混淆两个控件之间的区别。
这是创建上述屏幕截图的布局:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/text_view"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:text="Please align my first character" />
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/text_view"
android:hint="To my first character" />
</RelativeLayout>