我是android编程的新手,并不擅长java编程。 这里简单的问题:如何将在EditText中键入的值存储到数组一次按钮 按下,我将能够将每个索引与常量值进行比较的方式 另一个变量。
答案 0 :(得分:2)
//your array
String[n] array;
//your button
Button b;
///your edittext
EditText e;
if(b.isPressed())
array[x]=edit.getText().toString();
使用ArrayList
ArrayList<String> n= new ArrayList<String>();
//your button
Button b;
///your edittext
EditText e;
if(b.isPressed())
n.add(edit.getText().toString());
答案 1 :(得分:0)
这很容易。 xml布局
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/relativeLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<EditText
android:id="@+id/txtField"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
<Button
android:id="@+id/button"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>
</RelativeLayout>
因此,在您的活动中,您输入以下内容:
EditText text = (EditText) findViewById(R.id.txtField);
Button button = (Button) findViewById(R.id.button);
button.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
String s = text.getText().toString();
// then you do whatever you like with it
}
});