繁体   English   中英

在Android中以编程方式设置EditText的layout_width

[英]Programatically set layout_width of EditText in Android

因此,我有一个应用程序,每当按下“添加行”按钮时,就会动态添加一个表行。 附带的代码是按下“添加行”时运行的代码。 我想做的是在同一行上彼此相邻的3个EditText。 为此,我需要更改每个EditText的Layout_Width,以便第一个EditText不会将其他两个EditText截断。 我似乎无法找到一种正确执行此操作的方法,并且想知道是否有人会帮助我。 在弄清楚如何做到这一点之后,下一步就是根据屏幕尺寸调整layout_width,但是那以后就可以了。 这需要以编程方式完成,因为理论上用户可以拥有任意数量的行。

private OnClickListener btnListener = new OnClickListener()
    {

        public void onClick(View v)
        {   

            tablerow = new TableRow(getActivity());

            ed1 = new EditText(getActivity());
            ed1.setInputType(InputType.TYPE_CLASS_TEXT);

            ed2 = new EditText(getActivity());
            ed2.setInputType(InputType.TYPE_NUMBER_FLAG_DECIMAL);

            ed3 = new EditText(getActivity());
            ed3.setInputType(InputType.TYPE_NUMBER_FLAG_DECIMAL);

            tablerow.addView(ed1);
            tablerow.addView(ed2);
            tablerow.addView(ed3);
            table1.addView(tablerow);

        } 

    };  

我相信您正在寻找的是LayoutParams及其“重量”值。

尝试:

TableRow.LayoutParams params = new TableRow.LayoutParams(LayoutParams.MATCH_PARENT,LayoutParams.WRAP_CONTENT,1.0f);

ed1 = new EditText(getActivity());
ed1.setInputType(InputType.TYPE_CLASS_TEXT);
ed1.setLayoutParams(params);

LayoutParams构造函数中的第三个值(1.0f)是权重...该TableRow中的所有EditTexts最终应具有相同的宽度。

您可以尝试下一种方法,它基于xml。 您将可以在table_row.xmltable_row.xml布局。

   public class MainActivity extends ActionBarActivity implements View.OnClickListener {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }


    @Override
    public void onClick(View v) {
        switch (v.getId()) {
            case R.id.a_mn_button_add_row:
                onClickButtonAddRow();
                break;
        }
    }

    private void onClickButtonAddRow() {
        TableLayout tableLayout = (TableLayout) findViewById(R.id.a_mn_table);
        tableLayout.addView(View.inflate(this, R.layout.table_row, null));
    }
}

activity_main.xml

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <Button
        android:id="@+id/a_mn_button_add_row"
        android:onClick="onClick"
        android:text="Add row"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <TableLayout
            android:id="@+id/a_mn_table"
            android:stretchColumns="0,1,2"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />
    </ScrollView>

</LinearLayout>

table_row.xml

<?xml version="1.0" encoding="utf-8"?>
<TableRow xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">

    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:inputType="text" />

    <EditText
        android:inputType="text"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

    <EditText
        android:inputType="text"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

</TableRow>

table_row.xml用于具有3-1-2比例的用例。

<?xml version="1.0" encoding="utf-8"?>
<TableRow xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">

    <EditText
        android:layout_weight="3"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:inputType="text" />

    <EditText
        android:layout_weight="1"
        android:inputType="text"
        android:layout_width="0dp"
        android:layout_height="wrap_content" />

    <EditText
        android:layout_weight="2"
        android:inputType="text"
        android:layout_width="0dp"
        android:layout_height="wrap_content" />

</TableRow>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM