日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

android 清空所有控件,如何清空android ListView控件的内容

發布時間:2023/12/15 32 豆豆
生活随笔 收集整理的這篇文章主要介紹了 android 清空所有控件,如何清空android ListView控件的内容 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

匿名用戶

1級

2014-12-30 回答

代碼如下:

BaseAdapter ba=new BaseAdapter()

{

public int getCount() {

// TODO Auto-generated method stub

return count;

}

public Object getItem(int arg0) {

// TODO Auto-generated method stub

return null;

}

public long getItemId(int arg0) {

// TODO Auto-generated method stub

return 0;

}

public View getView(int arg0, View arg1, ViewGroup arg2) {

// TODO Auto-generated method stub

LinearLayout ll=new LinearLayout(ShowBusActivity.this);

ll.setOrientation(LinearLayout.HORIZONTAL);

TextView tv1=new TextView(ShowBusActivity.this);

tv1.setText(routeID);

tv1.setTextSize(12);

tv1.setWidth(120);

tv1.setTextColor(Color.WHITE);

ll.addView(tv1);

TextView tv2=new TextView(ShowBusActivity.this);

tv2.setText(tempBus[arg0].strCarId);

tv2.setTextSize(12);

tv2.setWidth(120);

tv2.setTextColor(Color.WHITE);

ll.addView(tv2);

TextView tv3=new TextView(ShowBusActivity.this);

tv3.setText(tempBus[arg0].distance);

tv3.setTextSize(12);

tv3.setWidth(120);

tv3.setTextColor(Color.WHITE);

ll.addView(tv3);

TextView tv4=new TextView(ShowBusActivity.this);

tv4.setText(tempBus[arg0].direction);

tv4.setTextSize(12);

tv4.setWidth(120);

tv4.setTextColor(Color.WHITE);

ll.addView(tv4);

return ll;

}};

lv.setAdapter(ba);

望采納!!!

總結

以上是生活随笔為你收集整理的android 清空所有控件,如何清空android ListView控件的内容的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。