I have been trying for some time to get this code to work. I am trying to update a list with text entered by the user, however the list is contained in the same layout. I have have consulted the android developers resources but cannot find a solution to this problem. Any help would be greatly appreciated.
My Xml being used:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<Button
android:id="@+id/ok"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:text="Add"
android:width="80dp" />
<Button
android:id="@+id/Finish"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_toRightOf="@+id/textView1"
android:text="Next" />
<TextView
android:id="@+id/namelabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:text="Please selest day first:" />
<Spinner
android:id="@+id/Dropdown"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_below="@+id/namelabel" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/Dropdown"
android:text="Now the slot time of your course:" />
<Button
android:id="@+id/time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_below="@+id/textView1"
android:text="Select Times" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_below="@+id/time"
android:text="Finally enter the module name" />
<EditText
android:id="@+id/nameentry"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/textView2"
android:background="@android:drawable/editbox_background" />
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/Finish"
android:layout_alignLeft="@+id/Finish"
android:layout_alignParentRight="true"
android:text="Next to Continue" />
<LinearLayout
android:id="@+id/listLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/textView3"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_below="@+id/nameentry"
android:orientation="vertical" >
<TextView
android:id="@+id/listItem"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="listItem" />
</LinearLayout>
</RelativeLayout>
And here is my problematic block of code:
package ie.teamname;
import java.util.ArrayList;
import android.app.ListActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.ArrayAdapter;
public class AddModule_list extends ListActivity {
// DEFINING STRING ADAPTER WHICH WILL HANDLE DATA OF LISTVIEW
ArrayAdapter<String> adapter;
@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
adapter = new ArrayAdapter<String>(this,
R.id.listLayout, R.id.listItem, AddModule.array);
setListAdapter(adapter);
}
// METHOD WHICH WILL HANDLE DYNAMIC INSERTION
public void addItems(View v) {
adapter.notifyDataSetChanged();
}
}
EDIT:
Here is my other class which is doing most of the work: I am creating an arraylist of strings while will be filled with data entered in the text field. It is added to the array when the button is pressed along with a call to my addmodule_list class. I apologise for the messy code, its a team project.
public class AddModule extends Activity {
protected static ArrayList<String> array;
public AddModule() {
array = new ArrayList();
}
// Time Dialog Box Code
protected CharSequence[] _options = { "8-9", "9-10", "10-11", "11-12",
"12-01", "01-02", "02-03", "03-04" };// Options to populate dialog
// box
protected boolean[] _selections = new boolean[_options.length];// Boolean
// array in
// which
// selections
// in dialog
// box are
// stored
protected Button _optionsButton;
// Time Dialog Box Code
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.add_module);
// Time Dialog Box Code
_optionsButton = (Button) findViewById(R.id.time);
_optionsButton.setOnClickListener(new ButtonClickHandler());
// Time Dialog Box Code
//Code For the Dropdown box.
Spinner spinner = (Spinner) findViewById(R.id.Dropdown);
ArrayAdapter<CharSequence> adapter = ArrayAdapter.createFromResource(
this, R.array.days_array, android.R.layout.simple_spinner_item);
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
spinner.setAdapter(adapter);
spinner.setOnItemSelectedListener(new MyOnItemSelectedListener());
// Defines the action when clicking the OK button
final Button button = (Button) findViewById(R.id.ok);
button.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
addToArray();
Intent intent = new Intent(AddModule.this, AddModule_list.class);
startActivity(intent);
}
});
}
public class MyOnItemSelectedListener implements OnItemSelectedListener {
public void onItemSelected(AdapterView<?> parent,
View view, int pos, long id) {
Toast.makeText(parent.getContext(), "Selected Day Is: " +
parent.getItemAtPosition(pos).toString(), Toast.LENGTH_LONG).show();
}
public void onNothingSelected(AdapterView parent) {
// Do nothing here.
}
}
public void addToArray() {
EditText name = (EditText) findViewById(R.id.nameentry);
String input = name.getText().toString();
array.add(input);
Context context = getApplicationContext();
int duration = Toast.LENGTH_SHORT;
// Resetting the text box to blank.
name.setText("");
String output = array.toString();
String text = output;
Toast toast = Toast.makeText(context, text, duration);
toast.show();
}
EDIT: SOLVED
As suggested there is no need for the AddModule_list class. Just simply create a listview and update when the button is pressed.
ListView lv = (ListView) findViewById(R.id.tempList);
final ArrayAdapter<String> ladapter = new ArrayAdapter<String>(this,
android.R.layout.simple_list_item_1, array);
lv.setAdapter(ladapter);