Click here to Skip to main content
       

Mobile

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page  Show 
AnswerRe: SD card CIDmvpRichard MacCutchan28 Oct '12 - 22:55 
QuestionAuthentication Protocol in mobile web servicesmemberEng.Fatima M28 Oct '12 - 6:32 
QuestionPayPal Integration with IPhone Native Applicationmemberkeyur satyadev25 Oct '12 - 0:25 
AnswerRe: PayPal Integration with IPhone Native ApplicationmvpRichard MacCutchan25 Oct '12 - 1:27 
Questionhow retrative data from Swlite3 and display as textmemberahrahr23 Oct '12 - 6:52 
QuestionWant to get location from latitude and longitude in Blackberry?memberamanarora BB22 Oct '12 - 22:32 
QuestionAdd new listitem in Listview dynamically [modified]memberklaydze18 Oct '12 - 21:29 
Hi Guys,
 
I populated my listview in android using ArrayAdapter. Populating my listview is easy BUT I'm having trouble adding new item on it dynamically.
 
Kindly check my code.
 
[Activity(Label = "Country List", MainLauncher = true)]
    public class MyListViewActivity : Activity
    {
        List<string> countries = new List<string>();
        ArrayAdapter<string> adapter;
        ListView lvw;
        
        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);
            
            SetContentView(Resource.Layout.ListviewLayout);
            InitCounties();
                                                
            lvw = FindViewById<ListView>(Resource.Id.lvwCountry);
            EditText txtMsg = FindViewById<EditText>(Resource.Id.edit_text_out);
            Button btnSend = FindViewById<Button>(Resource.Id.button_send);
 
            adapter = new ArrayAdapter<string>(this, Android.Resource.Layout.SimpleListItem1, countries);
            lvw.Adapter = adapter;
            lvw.TextFilterEnabled = true;
            lvw.FastScrollEnabled = true;
 
            btnSend.Click += delegate(object sender, EventArgs e)
            {
                addItems(txtMsg.Text);
            };
        }
     }
 
void InitCounties()
{
        countries.Add("Philippines");
        countries.Add("USA");
        countries.Add("Hong Kong");
        countries.Add("Singapore");
        countries.Add("Russia");
        countries.Add("Afghanistan");
        countries.Add("Albania");
        countries.Add("Algeria");
        countries.Add("American Samoa");
	countries.Add("Andorra");
}
 
public void addItems(string newItem)
{
     counties.Add(newItem);
     adapter.NotifyDataSetChanged();
}
 
Actually the newitem will add in the collection but when I break and check the adapter, the property Count does not changed and my listview is still the same.
 
I know I'm missing somewhere in my code but I don't know where exactly it is.
 
BTW, I'm using Visual Studio 2010 (Mono for Android) in my code.
 
Thanks
if(you type your code here) {
Messagebox.Show("You help me a lot!");
}
else {
You help me = null;
}


modified 19 Oct '12 - 3:39.

QuestionHTML 5 the future?memberkakah100014 Oct '12 - 8:47 
AnswerRe: HTML 5 the future?mvpRichard MacCutchan14 Oct '12 - 21:03 
GeneralRe: HTML 5 the future?memberkakah100014 Oct '12 - 21:41 
GeneralRe: HTML 5 the future?mvpRichard MacCutchan15 Oct '12 - 4:37 
GeneralRe: HTML 5 the future?memberkakah100015 Oct '12 - 4:45 
QuestionMobile Application Development (Windows Platform)memberAbdul Rahman Hamidy9 Oct '12 - 0:10 
AnswerRe: Mobile Application Development (Windows Platform)protectorPete O'Hanlon9 Oct '12 - 1:23 
GeneralRe: Mobile Application Development (Windows Platform)memberAbdul Rahman Hamidy9 Oct '12 - 17:58 
AnswerRe: Mobile Application Development (Windows Platform)memberbiop.codeproject31 Oct '12 - 16:36 
QuestionAndroid Dev for ICS 4.0.4memberDana Gibson8 Oct '12 - 6:55 
AnswerRe: Android Dev for ICS 4.0.4memberMike DiGiovanni9 Oct '12 - 1:44 
Questionandroid action barmembermsh667 Oct '12 - 1:15 
AnswerRe: android action barmvpRichard MacCutchan7 Oct '12 - 1:30 
GeneralRe: android action barmembermsh667 Oct '12 - 1:44 
GeneralRe: android action barmvpRichard MacCutchan7 Oct '12 - 2:00 
AnswerRe: android action barmembermsh667 Oct '12 - 2:26 
Suggestioncan i move objects in blackberry os 5.0?memberamanarora BB6 Oct '12 - 7:18 
GeneralRe: can i move objects in blackberry os 5.0?mvpRichard MacCutchan6 Oct '12 - 21:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   


Advertise | Privacy | Mobile
Web01 | 2.6.130523.1 | Last Updated 25 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid