EDIT: Need to know how to create an ArrayList
filled by a Textview
I am trying to create an ArrayAdapter
for a Multidimensional (2D) ArrayList
:
final ArrayAdapter<ArrayAdapter<ArrayList<String>>> adapterNames = new ArrayAdapter<ArrayAdapter<ArrayList<String>>>(this,android.R.layout.simple_list_item_1, android.R.id.text1, arrayNamesOne);
This is the log error I get:
Error:(28, 76) error: no suitable constructor found for ArrayAdapter(MainActivity,int,int,ArrayList>) constructor ArrayAdapter.ArrayAdapter(Context,int,int,ArrayAdapter>[]) is not applicable (argument mismatch; ArrayList> cannot be converted to ArrayAdapter>[]) constructor ArrayAdapter.ArrayAdapter(Context,int,int,List>>) is not applicable (argument mismatch; ArrayList> cannot be converted to List>>)
If you prefer to take a better look at the whole code interested, here you go:
public class MainActivity extends ActionBarActivity {
//1ST DECLARATION
ArrayList<ArrayList<String>> arrayNamesOne = new ArrayList<ArrayList<String>>();
ListView listNamesOne;
TextView namesTextOne;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//1ST SETUP
listNamesOne = (ListView) findViewById(R.id.listNamesId);
namesTextOne = (TextView) findViewById(R.id.namesTexter);
final ArrayAdapter<ArrayAdapter<ArrayList<String>>> adapterNames = new ArrayAdapter<ArrayAdapter<ArrayList<String>>>(this,android.R.layout.simple_list_item_1, android.R.id.text1, arrayNamesOne);
listNamesOne.setAdapter(adapterNames);
//END 1ST SETUP
//1ST BUTTON '+'
Button buttonPlus = (Button)findViewById(R.id.buttonPlus);
buttonPlus.setOnClickListener(
new Button.OnClickListener() {
//CLICK EVENT
@Override
public void onClick(View v) {
//IF EMPTY
if (namesTextOne.getText().toString().isEmpty()){
Context context = getApplicationContext();
CharSequence text = "Add an item first";
int duration = Toast.LENGTH_SHORT;
Toast.makeText(context, text, duration).show();
//IF SPACES ONLY
}else if(namesTextOne.getText().toString().trim().isEmpty()){
Context context = getApplicationContext();
CharSequence text = "You can't use spaces only";
int duration = Toast.LENGTH_SHORT;
namesTextOne.setText("");
Toast.makeText(context, text, duration).show();
//ALRIGHT, ADD IT!
} else if(!namesTextOne.getText().toString().isEmpty()) {
arrayNamesOne.add(0, (ArrayList<String>) namesTextOne.getText());
adapterNames.notifyDataSetChanged();
namesTextOne.setText("");
}
}
}
);
}