将 textView 和 editText 放在 Android 应用程序的同一行

发布于 2024-11-01 15:32:45 字数 491 浏览 2 评论 0原文

我想将 TextView 和 EditText 放在以下 main.xml 的同一行上。我该怎么做?

<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>

任何帮助表示赞赏。

i want to place a TextView and EditText on the same line in the following main.xml. How do i do that?

<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>

Any help is appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南冥有猫 2024-11-08 15:32:45

我相信周围的线性布局与orientation=horizo​​ntal就是你想要的。您也可以尝试使用 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>

希望有帮助

i believe a surrounding linearLayout with orientation=horizontal is what your after. you could also try using a 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>

Hope that helps

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文