以编程方式添加线性布局

时间:2016-10-10 23:31:22

标签: android android-layout

每当我的应用程序上的某个按钮被推送时,我正在尝试添加一个带有EditText元素的新LinearLayout。我有的xml是

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/app"
   xmlns:android="http://schemas.android.com/apk/res/android"
   xmlns:tools="http://schemas.android.com/tools"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:orientation="vertical"
   android:weightSum="1">
   <EditText android:id="@+id/dish_name"
      android:layout_width="match_parent"
      android:layout_height="58dp"
      android:hint="@string/dish_name"
      android:background="@drawable/my_border"
      android:paddingLeft="10dip"/>
      <LinearLayout android:id="@+id/ingredient_list"
         android:layout_width="match_parent"
         android:layout_height="58dp"
         android:weightSum="1"
         android:layout_marginTop="20dp">
         <EditText android:id="@+id/edit_message"
             android:layout_width="0dp"
             android:layout_height="42dp"
             android:hint="@string/edit_message"
             android:background="@drawable/my_border"
             android:layout_weight="1"
             android:paddingLeft="10dip"/>
         <Button
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"
             android:text="@string/button_send"
             android:onClick="sendMessage" />
       </LinearLayout>
</LinearLayout>

我正在尝试复制第二个LinearLayout以及其中的EditText。我到目前为止的java代码是:

public void sendMessage(View view) {
   LinearLayout layout = new LinearLayout(this);
    LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT,
            LinearLayout.LayoutParams.WRAP_CONTENT);

    layout.setOrientation(LinearLayout.HORIZONTAL);
    layout.setWeightSum(1f);
    params.weight = 1.0f;


    params.setMargins(0,20,0,0);

    EditText editText = new EditText(this);

    editText.setBackgroundResource(R.drawable.my_border);
    editText.setHint(R.string.edit_message);
    editText.setLayoutParams(params);

    LinearLayout container = (LinearLayout)findViewById(R.id.app);
    container.addView(editText);

}

我遇到的问题是,当我点击按钮时,我得到以下内容:

AppImage

我希望EditText框的高度与我在xml中定义的高度相同,但它会占用整个屏幕。

有什么想法吗?

3 个答案:

答案 0 :(得分:1)

无需在Java中完全重新定义布局。您应该将其定义为自己的XML文件。称之为ingredient_input.xml

例如,随意修改。这是EditText和按钮的一个“行”,因此是水平布局。也可以是RelativeLayout。

  <LinearLayout
     android:layout_width="match_parent"
     android:layout_height="58dp"
     android:weightSum="1"
     android:orientation="horizontal"
     android:layout_marginTop="20dp">
     <EditText android:id="@+id/edit_message"
         android:layout_width="0dp"
         android:layout_height="42dp"
         android:hint="@string/edit_message"
         android:background="@drawable/my_border"
         android:layout_weight="1"
         android:paddingLeft="10dip"/>
     <Button
         android:id="@+id/btnAddMore"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:text="@string/button_send"/>
   </LinearLayout>

首先,您需要获得父线性布局

LinearLayout ll = (LinearLayout) findViewById(R.id.ingredient_list);

然后,您可以为“输入行”

扩充XML文件
LayoutInflater inflater = LayoutInflater.from(MainActivity.this); // some context
View row = inflater.inflate(R.layout.ingredient_input, null);

您也可以找到该按钮,然后设置其点击监听器

row.findViewById(R.id.btnAddMore).setOnClickListener(...); // TODO

然后,只需将该视图添加到父线性布局

即可
ll.addView(row);

实际上,你真的可以使用带适配器的ListView。

答案 1 :(得分:0)

LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT,
        LinearLayout.LayoutParams.WRAP_CONTENT);

在上面的代码中,您将高度设置为match_parent并将其设置为wrap_content。相反,尝试设置高度和宽度以匹配您的xml。高度应为58dp,宽度应与父级匹配。

希望这有帮助!

答案 2 :(得分:0)

我没有时间来测试这个,但你可以试试:

// assuming you have variables for ingredient_list and edit_message
LinearLayout.LayoutParams params = (LinearLayout.LayoutParams)ingredientList.getLayoutParams();
LinearLayout.LayoutParams editTextParams = (LinearLayout.LayoutParams)editMessage.getLayoutParams();

然后您可以使用这些而不是创建参数。

P.S。您在xml中的ingredient_list中没有指定的方向。