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