亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

android中的ListView

發布時間:2020-08-07 20:20:43 來源:ITPUB博客 閱讀:160 作者:山有木xi 欄目:移動開發

在Android中有一個絕對稱得上最常用的控件之一,幾乎所有的應用都能用到它

由于Android運行在手機上,手機屏幕的顯示內容并不多,當我們的APP要大量顯示數據時

就需要用到ListView了

ListView運行用戶通過手指上下滑動的方式把屏幕外的數據滾動到屏幕內,同時屏幕內的數據隨之滾動出屏幕外

可以說,大家所熟悉的所有軟件都用到了

首先,需要在xml中定義一個TextView和ImageView

然后,新建一個實體類

public class Abc{
private String name;
private  int imageid;
public Abc(String name,int iamgeid){
this.name=name;
this.imageid=imageid;
}
public String getname(){
return name;
}
public int getimageid(){
return imageid;
}
}

其中那么表示輸出的文本內容,imageid表示輸出的圖片

接著創建一個適配器

public class AbcAdapter extands ArrayAdapter[Abc]{
int id;
public AbcAdapter(Context context,int textViewRecouceid,List[Abc]objects){
super(context,textViewResouceid,objects);
id=textViewResouceid;
}
@Override
public class getView(int position,View convertView,viewGroup parent){
Abc abc =getItem(position);
View view=LayoutInflate.from(getContex()).infalte(id,parent,false);
ImageView image=(ImageView) findViewByid(R.id.abc_image);
TextView text=(TextView) findViewByid(R.id.abc_text);
image.setImageResouce(abc.getimage);
text.setText(abc.getname);
return view;
}
}

最后設置一下MainActivity

private List<Abc> abclist=new ArrayList//先設置一個集合,準備裝數據
initabc();
AbcAdapter adapter=new Abc Adapter(MainActivity.this,R.layout.abc_item,abclist)
ListView listview=(ListView) findViewByid(R.id.abc_list);
listview.setAdapter(adaper);
}
public void initabc(){
Abc a=new Abc("a",R.drawable.xxx_pic);
abclist.add(a);
....
}
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

大连市| 尤溪县| 昆明市| 新巴尔虎左旗| 陈巴尔虎旗| 德安县| 汝阳县| 黄山市| 连南| 瑞金市| 肃北| 平舆县| 北安市| 长岛县| 桦甸市| 宜昌市| 格尔木市| 平阳县| 天水市| 通河县| 兴和县| 广东省| 登封市| 新丰县| 石首市| 牙克石市| 临西县| 清徐县| 莲花县| 莆田市| 弋阳县| 阿巴嘎旗| 法库县| 城市| 赫章县| 鱼台县| 偏关县| 通山县| 武邑县| 凤冈县| 临洮县|