-
监听器 onItemClickListener onScrollListener 实现方法 imp 绑定监听器 seton public void onItem(){ String text = listView.getItemAtPosition(position)+""; Toast.makeText(this,"position="+position+" text="+text,Toast.LENGTH.SHORT).show; }查看全部
-
Include的使用查看全部
-
布局原则二查看全部
-
创建item.xml LinearLayout orientation="horizontal" <ImageView id/pic android:src="@drawable/ic_launcher" wi he /> <TextView id/text wid hei textSize textColor text />查看全部
-
布局原则一查看全部
-
开发最好使用的布局顺序查看全部
-
Android常用布局查看全部
-
listView.setAdapter(simp_adapter) SimpleAdaper(content,data,resource,from,to); //content:上下文 /*data:数据源(List<? extends Map<String,?>> data) 一个Map所组成的List集合 每一个Map都会对应ListView列表的一行 每一个Map(key-value)中必须包含所有在from所指定的key resource:列表项的布局文件ID from:map的key to:绑定数据视图中的ID,与from对应 */ simp_adapter = new SimpleAdapter(this,getData(),R.layout.item,new String[]{"pic","text"},new int[]{R.id.pic,R.id.text}); private List<Map<String,Object>> getData(){ for(int i = 0;i< 20;i++){ Map<String,Object>map = new HashMap<String,Object>(); map.put("pic",R.drawale.ic_launcher); map.put("text","DrumBass"+i); } return datalist; }查看全部
-
自定义进度条查看全部
-
ProgressBar的关键方法查看全部
-
SeekBar事件查看全部
-
ProgressBar的关键属性查看全部
-
SeekBar的属性和方法查看全部
-
启用窗口特征,启用带进度和不带进度的进度条 通过在setContenView()前用requestWindowFeature()来设置查看全部
-
ViewFactory的使用查看全部
举报
0/150
提交
取消