Add Items to ListView - Android

后端 未结 3 793
终归单人心
终归单人心 2020-12-05 11:16

This is my first experience with android. I\'m trying to add items to my ListView. I use Tabs, and the only way to see that the item was added is to change tab and then come

3条回答
  •  南方客
    南方客 (楼主)
    2020-12-05 11:46

    public OnClickListener moreListener = new OnClickListener() {
    
        @Override
          public void onClick(View v) {
              adapter.add("aaaa")
          }
    }
    

提交回复
热议问题