我试图用来自 AlertDialog 的输入填充 ListView,该输入在其中打开一个 EditText。我的问题是每次我用 EditText 在 AlertDialog 中给出一些东西并单击 AlertDialog 中的添加按钮时,它会用相同的 String 填充我的 Array 的所有 20 组。但我希望他只从 EditText 填充 String 1时间,我可以进一步处理这 1 个项目。
这是我的代码
MainActivity.java
public class MainActivity extends Activity {
private static final int DIALOG_ALERT = 10;
ListView list;
Button addBtn;
EditText input;
String[] items;
ArrayAdapter<String> adapter;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
list = (ListView) findViewById(R.id.list);
addBtn = (Button) findViewById(R.id.addPlanBtn);
input = new EditText(this);
items = new String[20];
adapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, items);
list.setAdapter(adapter);
addBtn.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
AlertDialog alert = new AlertDialog.Builder(MainActivity.this).create();
alert.setTitle("Train plan name");
alert.setMessage("enter a name:");
alert.setView(input);
alert.setButton("add", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
String value = input.getText().toString();
for(int i=0; i < items.length; i++){
items[i] = value;
}
}
});
alert.show();
}
});
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.activity_main, menu);
return true;
}
}
activity_main.xml
<RelativeLayout 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"
tools:context=".MainActivity" >
<ListView
android:id="@+id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/addPlanBtn"
>
</ListView>
<Button
android:id="@+id/addPlanBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:text="add a new Plan" />
</RelativeLayout>
感谢您的任何帮助。