How to print arraylist in dialog box
up vote
0
down vote
favorite
I am creating an app that list out all the countries in a listview and user able to check on the countries. Once the button is clicked, a dialog box will pop up and list the countries selected.
I am trying to do like adding in the countries to a arraylist and then print the array list out in the dialog box. But i could not able to call the arraylist in my ButtonOnClicklistener function.
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ListView listView=(ListView)findViewById(R.id.ListView_1);
CustomAdapter customAdapter = new CustomAdapter();
listView.setAdapter(customAdapter);
Button sbmButton = (Button)findViewById(R.id.Btn_submit);
final ArrayList<String> ArrayCountry = new ArrayList<String>();
sbmButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
builder.setTitle("Your Wishlist");
builder.setMessage("Countries");
builder.setCancelable(false);
for(int x=0; x < ArrayCountry.size(); x++) {
builder.setMessage( ArrayCountry.get(x));
}
builder.setNegativeButton("Close", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.cancel();
}
});
AlertDialog alert=builder.create();
alert.show();
}
});
}
class CustomAdapter extends BaseAdapter{
@Override
public int getCount() {
return img.length;
}
@Override
public Object getItem(int position) {
return null;
}
@Override
public long getItemId(int position) {
return 0;
}
@Override
public View getView(int i, View view, ViewGroup parent) {
view = getLayoutInflater().inflate(R.layout.customlayout,null);
ImageView img_athens = (ImageView)view.findViewById(R.id.imageView_City);
TextView txt_athens = (TextView)view.findViewById(R.id.textView_city);
TextView txt_greece = (TextView)view.findViewById(R.id.textView_country);
final CheckBox chk_City = (CheckBox)view.findViewById(R.id.checkBox_Country);
final ArrayList<String> ArrayCountry = new ArrayList<String>();
img_athens.setImageResource(img[i]);
txt_athens.setText(City[i]);
txt_greece.setText(Country[i]);
chk_City.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
if(chk_City.isChecked()){
ArrayCountry.add(chk_City.getText().toString());
}
}
});
return view;
}
android-studio arraylist dialog
add a comment |
up vote
0
down vote
favorite
I am creating an app that list out all the countries in a listview and user able to check on the countries. Once the button is clicked, a dialog box will pop up and list the countries selected.
I am trying to do like adding in the countries to a arraylist and then print the array list out in the dialog box. But i could not able to call the arraylist in my ButtonOnClicklistener function.
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ListView listView=(ListView)findViewById(R.id.ListView_1);
CustomAdapter customAdapter = new CustomAdapter();
listView.setAdapter(customAdapter);
Button sbmButton = (Button)findViewById(R.id.Btn_submit);
final ArrayList<String> ArrayCountry = new ArrayList<String>();
sbmButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
builder.setTitle("Your Wishlist");
builder.setMessage("Countries");
builder.setCancelable(false);
for(int x=0; x < ArrayCountry.size(); x++) {
builder.setMessage( ArrayCountry.get(x));
}
builder.setNegativeButton("Close", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.cancel();
}
});
AlertDialog alert=builder.create();
alert.show();
}
});
}
class CustomAdapter extends BaseAdapter{
@Override
public int getCount() {
return img.length;
}
@Override
public Object getItem(int position) {
return null;
}
@Override
public long getItemId(int position) {
return 0;
}
@Override
public View getView(int i, View view, ViewGroup parent) {
view = getLayoutInflater().inflate(R.layout.customlayout,null);
ImageView img_athens = (ImageView)view.findViewById(R.id.imageView_City);
TextView txt_athens = (TextView)view.findViewById(R.id.textView_city);
TextView txt_greece = (TextView)view.findViewById(R.id.textView_country);
final CheckBox chk_City = (CheckBox)view.findViewById(R.id.checkBox_Country);
final ArrayList<String> ArrayCountry = new ArrayList<String>();
img_athens.setImageResource(img[i]);
txt_athens.setText(City[i]);
txt_greece.setText(Country[i]);
chk_City.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
if(chk_City.isChecked()){
ArrayCountry.add(chk_City.getText().toString());
}
}
});
return view;
}
android-studio arraylist dialog
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am creating an app that list out all the countries in a listview and user able to check on the countries. Once the button is clicked, a dialog box will pop up and list the countries selected.
I am trying to do like adding in the countries to a arraylist and then print the array list out in the dialog box. But i could not able to call the arraylist in my ButtonOnClicklistener function.
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ListView listView=(ListView)findViewById(R.id.ListView_1);
CustomAdapter customAdapter = new CustomAdapter();
listView.setAdapter(customAdapter);
Button sbmButton = (Button)findViewById(R.id.Btn_submit);
final ArrayList<String> ArrayCountry = new ArrayList<String>();
sbmButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
builder.setTitle("Your Wishlist");
builder.setMessage("Countries");
builder.setCancelable(false);
for(int x=0; x < ArrayCountry.size(); x++) {
builder.setMessage( ArrayCountry.get(x));
}
builder.setNegativeButton("Close", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.cancel();
}
});
AlertDialog alert=builder.create();
alert.show();
}
});
}
class CustomAdapter extends BaseAdapter{
@Override
public int getCount() {
return img.length;
}
@Override
public Object getItem(int position) {
return null;
}
@Override
public long getItemId(int position) {
return 0;
}
@Override
public View getView(int i, View view, ViewGroup parent) {
view = getLayoutInflater().inflate(R.layout.customlayout,null);
ImageView img_athens = (ImageView)view.findViewById(R.id.imageView_City);
TextView txt_athens = (TextView)view.findViewById(R.id.textView_city);
TextView txt_greece = (TextView)view.findViewById(R.id.textView_country);
final CheckBox chk_City = (CheckBox)view.findViewById(R.id.checkBox_Country);
final ArrayList<String> ArrayCountry = new ArrayList<String>();
img_athens.setImageResource(img[i]);
txt_athens.setText(City[i]);
txt_greece.setText(Country[i]);
chk_City.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
if(chk_City.isChecked()){
ArrayCountry.add(chk_City.getText().toString());
}
}
});
return view;
}
android-studio arraylist dialog
I am creating an app that list out all the countries in a listview and user able to check on the countries. Once the button is clicked, a dialog box will pop up and list the countries selected.
I am trying to do like adding in the countries to a arraylist and then print the array list out in the dialog box. But i could not able to call the arraylist in my ButtonOnClicklistener function.
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ListView listView=(ListView)findViewById(R.id.ListView_1);
CustomAdapter customAdapter = new CustomAdapter();
listView.setAdapter(customAdapter);
Button sbmButton = (Button)findViewById(R.id.Btn_submit);
final ArrayList<String> ArrayCountry = new ArrayList<String>();
sbmButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
builder.setTitle("Your Wishlist");
builder.setMessage("Countries");
builder.setCancelable(false);
for(int x=0; x < ArrayCountry.size(); x++) {
builder.setMessage( ArrayCountry.get(x));
}
builder.setNegativeButton("Close", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.cancel();
}
});
AlertDialog alert=builder.create();
alert.show();
}
});
}
class CustomAdapter extends BaseAdapter{
@Override
public int getCount() {
return img.length;
}
@Override
public Object getItem(int position) {
return null;
}
@Override
public long getItemId(int position) {
return 0;
}
@Override
public View getView(int i, View view, ViewGroup parent) {
view = getLayoutInflater().inflate(R.layout.customlayout,null);
ImageView img_athens = (ImageView)view.findViewById(R.id.imageView_City);
TextView txt_athens = (TextView)view.findViewById(R.id.textView_city);
TextView txt_greece = (TextView)view.findViewById(R.id.textView_country);
final CheckBox chk_City = (CheckBox)view.findViewById(R.id.checkBox_Country);
final ArrayList<String> ArrayCountry = new ArrayList<String>();
img_athens.setImageResource(img[i]);
txt_athens.setText(City[i]);
txt_greece.setText(Country[i]);
chk_City.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
if(chk_City.isChecked()){
ArrayCountry.add(chk_City.getText().toString());
}
}
});
return view;
}
android-studio arraylist dialog
android-studio arraylist dialog
asked Nov 20 at 13:53
Reuben Kai Min
53
53
add a comment |
add a comment |
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53394541%2fhow-to-print-arraylist-in-dialog-box%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53394541%2fhow-to-print-arraylist-in-dialog-box%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown