我想将 aTextView
和 anEditext
放在同一行,但它可能看起来像TextView
放在上面EditText
。我已经尝试了所有关于 SO 的解决方案,但它并不完全适合我。
这是我的代码
<RelativeLayout
android:id="@+id/view2"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/from"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:background="#ffffff"
android:text="From"
android:textColor="#000fff"
android:textStyle="bold" />
<EditText
android:id="@+id/input"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:gravity="right"
android:inputType="number"
android:visibility="invisible" />
</RelativeLayout>
它把EditText
上面的TextView
.