我想在下面的main.xml中的同一行放置TextView和EditText。我该怎么做?
<TextView android:layout_height="wrap_content" android:layout_width="wrap_content" android:text="@string/txtTotalAmt" android:id="@+id/txtTotalAmt" ></TextView>
<EditText android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/TotalAmt" android:maxLength="6" android:text="0.00" android:inputType="number|numberDecimal"></EditText>
感谢任何帮助。
答案 0 :(得分:13)
我相信一个方向=水平的周围linearLayout就是你的追求。您也可以尝试使用Tablelayout + Tablerow
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="56px"
android:orientation="horizontal">
<TextView android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@string/txtTotalAmt"
android:id="@+id/txtTotalAmt" >
</TextView>
<EditText android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/TotalAmt"
android:maxLength="6"
android:text="0.00"
android:inputType="number|numberDecimal">
</EditText>
</LinearLayout>
希望有所帮助