Android“文本”旁边的“文本字段”框

时间:2011-12-29 22:49:16

标签: android text textfield

我刚接触Android开发,我有一个愚蠢的问题。如何将“文本字段”框放在单行旁边的文本旁边。

示例:

Please Enter the number:   [        ] <--- this should be the textfield. 

感谢。

3 个答案:

答案 0 :(得分:2)

正如其他人所说的那样......你必须将它们放在LinearLayout或RelativeLayout中。由于你刚刚开始,我建议改用LinearLayout。这样的事情应该有效。

<LinearLayout android:orientation="horizontal" 
          android:layout_height="wrap_content"
          android:layout_width="fill_parent">

<TextView android:text="Please Enter The Number:"
          android:layout_height="wrap_content"
          android:layout_width = "wrap_content"/>

<EditText android:layout_height="wrap_content"
          android:layout_width="wrap_content"/>


</LinearLayout>

答案 1 :(得分:1)

您可以使用LineraLayout(或)RelativeLayout(或)TableLayout

以下是一个很好的例子:Android Layout Tutorial

答案 2 :(得分:0)

例如,将它们并排放置在水平LinearLayout中。或者在TableLayout中的两列中。顺便说一下。要使用的组件是TextView和EditText