拖延症最可怕的地方就是:就算自己这边没有拖延,但对方也会拖延,进而导致自己这边也开始拖延起来!现在这个项目我这边已经是完工了,但是对方迟迟没有搞定,导致整个项目无法提交。
这就是拖延症的可怕:我们不仅是与自己的拖延症作战,而是与所有有关人士的拖延症作战,决定项目是否能够提交,在于那个最慢的人。
既然决定权已经不在我的手上,那么我也可以做做其他事情,像是现在这样写写博客。
这次就介绍一下ListView中比较简单但又非常方便的ArrayAdapter。
ArrayAdapter是BaseAdapter的派生类,在BaseAdapter的基础上,添加了一项重大的功能:可以直接使用泛型构造。
我们先来看一个简单的例子:
@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); ListView listView = (ListView) this.findViewById(R.id.list); UserAdapter adapter = new UserAdapter(this, R.layout.list_item); adapter.add(new User(10, "小智", "男")); adapter.add(new User(10, "小霞", "女")); listView.setAdapter(adapter); } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.main, menu); return true; } class UserAdapter extends ArrayAdapter<User> { private int mResourceId; public UserAdapter(Context context, int textViewResourceId) { super(context, textViewResourceId); this.mResourceId = textViewResourceId; } @Override public View getView(int position, View convertView, ViewGroup parent) { User user = getItem(position); LayoutInflater inflater = getLayoutInflater(); View view = inflater.inflate(mResourceId, null); TextView nameText = (TextView) view.findViewById(R.id.name); TextView ageText = (TextView) view.findViewById(R.id.age); TextView sexText = (TextView) view.findViewById(R.id.sex); nameText.setText(user.getName()); ageText.setText(user.getAge()); sexText.setText(user.getSex()); return view; } } class User { private int mAge; private String mName; private String mSex; public User(int age, String name, String sex) { this.mAge = age; this.mName = name; this.mSex = sex; } public String getName() { return this.mName; } public String getAge() { return this.mAge + ""; } public String getSex() { return this.mSex; } }
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
软考中级精品资料免费领
- 历年真题答案解析
- 备考技巧名师总结
- 高频考点精准押题
- 资料下载
- 历年真题
193.9 KB下载数265
191.63 KB下载数245
143.91 KB下载数1142
183.71 KB下载数642
644.84 KB下载数2755
相关文章
发现更多好内容猜你喜欢
AI推送时光机简单好用的Adapter---ArrayAdapter详解
后端开发2023-05-30
C++JSON库CJsonObject详解(轻量简单好用)
后端开发2024-04-02
AndroidNotificationManager简单使用详解
后端开发2024-04-02
TabLayout+ViewPager2的简单使用详解
后端开发2024-04-02
vue简单的store详解
后端开发2024-04-02
mybatis简单resultMap使用详解
后端开发2024-04-02
详解React中Fragment的简单使用
后端开发2022-11-13
详解Java中Quartz的简单使用
后端开发2023-05-15
详解log4j.properties的简单配置和使用
后端开发2023-05-30
Android弹窗ListPopupWindow的简单应用详解
后端开发2024-04-02
详解Navicat简单使用方法
后端开发2023-08-09
AWR你好(3)—— ADDM的简单使用
后端开发2023-01-31
php中WebSocket的简单使用示例详解
后端开发2024-04-02
DrawerLayout的简单使用及侧滑菜单实现详解
后端开发2023-05-15
Android OkHttp的简单使用和封装详解
后端开发2022-06-06
Java SPI简单应用案例详解
后端开发2024-04-02
docker-compose简单使用方法详解
后端开发2022-11-13
Java使用Socket简单通讯详解
后端开发2024-04-02
springboot+dubbo+zookeeper的简单实例详解
后端开发2024-04-02
咦!没有更多了?去看看其它编程学习网 内容吧