用户可以创建20-30个以上的EditText,并且应用必须保存它们。

我有一个问题:我不知道如何从这些EditText中获取文本。

这是我在xml文件中的代码:

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

    <EditText
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+id/editText_text" />

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">

        <EditText
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:inputType="number"
            android:ems="10"
            android:id="@+id/editext_amount" android:layout_weight="1"/>

        <EditText
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:inputType="number"
            android:ems="10"
            android:id="@+id/editText1_price" android:layout_weight="1"/>

</LinearLayout>
</LinearLayout>


这是我的活动代码:

layout_container = (LinearLayout)findViewById(R.id.layout_items);
 View view_item = getLayoutInflater().inflate(R.layout.shop_item,layout_container,false);
        layout_container.addView(view_item);

@Override
    public void onClick(View view)
    {
        if(view == button_add_item)
        {
            field_count++;
            if(field_count < 50)
            {
                View view_item = getLayoutInflater().inflate(R.layout.shop_item,layout_container,false);
                layout_container.addView(view_item);
            }
        }
    }


谢谢=)

最佳答案

请尝试这样...

private EditText et1;

then in the onCreate() function...

et1 = (EditText)findViewById(R.id.editText_text);

@Override
public void onClick(View view)
{
    if(view.getId() == R.id.editText_text)
    {
        String str = et1.getText().toString();
    }
}


因此,可以从其他EditText获得String。希望能帮助到你。

关于java - Android:从布局容器获取文本,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19610854/

10-11 20:50