将文本字段设置为水平

时间:2012-07-16 05:05:25

标签: android html5 cordova

我有3个文本字段,我设计如下。我希望它们是水平的并且出现在一行中。但它们是垂直的3行。有人能帮助我吗?

<fieldset data-role="controlgroup" data-type="horizontal">
   <legend>The 3 values:</legend>
    <input type="text" id="basic1" value="">
    <input type="text" id="basic2" value="">
    <input type="text" id="basic3"  value="">
</fieldset>

2 个答案:

答案 0 :(得分:0)

EditText horizonatl

中放置三个LinearLayout

答案 1 :(得分:0)

您必须定义每个输入字段的宽度。

    <fieldset data-role="controlgroup" data-type="horizontal">
        <legend>The 3 values:</legend>
        <input style="width:30px; " type="text" id="basic1" value="">
        <input style="width:30px;" type="text" id="basic2" value="">
        <input style="width:30px; "type="text" id="basic3"  value="">
    </fieldset>