Android UI 老虎机
EloiseBotto
8年前
<h3>今天完成的任务</h3> <ul> <li>listview 的使用步骤</li> <li>简单的listview老虎机实现</li> </ul> <h3>1.作品展示</h3> <p style="text-align:center"><img src="https://simg.open-open.com/show/67b5bc0a840c47ccbd1bc5e32664794c.png"></p> <h3>2.需要掌握的知识</h3> <ul> <li>listview的使用步骤</li> <li>listview的Adapter接口的实现</li> <li>listview中的MVC</li> </ul> <h3>3.知识详解</h3> <ul> <li> <p>ListView 是一个控件,一个在垂直滚动的列表中显示条目的一个控件,这些条目的内容来自于一个ListAdapter 。EditText Button TextView ImageView Checkbox 五大布局。</p> <pre> <code class="language-java">1.布局添加Listview 2.找到listview 3.创建一个Adapter适配器继承BaseAdapter,封装4个方法,其中getcount,getview必须封装 getcount:告诉listview要显示的条目数 getview:告诉listview每个条目显示的内容。 4.创建Adapter的一个对象,设置给listview。 listview.setAdapter(ListAdapter adapter);</code></pre> </li> </ul> <ul> <li> <p>listview优化</p> <p>adapter中getview方法会传进来一个convertView,convertView是指曾经使用过的view对象,可以被重复使用,但是在使用前需要判断是否为空,不为空直接复用,并作为getview方法的返回对象。</p> <pre> <code class="language-java">TextView view = null; if(convertView != null){//判断converView是否为空,不为空重新使用 view = (TextView) convertView; }else{ view = new TextView(mContext);//创建一个textView对象 } return view;</code></pre> </li> </ul> <h3>4.项目代码</h3> <pre> <code class="language-java">public class MainActivity extends AppCompatActivity { //1,声明控件LISTVIEW private ListView listView1; private ListView listView2; private ListView listView3; private Context mContext; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); //2,获取控件的id listView1 = (ListView)findViewById(R.id.list_item1); listView2 = (ListView)findViewById(R.id.list_item2); listView3 = (ListView)findViewById(R.id.list_item3); mContext = this; //3,进行绑定 MyAdapter myAdapter = new MyAdapter(); listView3.setAdapter(myAdapter); listView2.setAdapter(myAdapter); listView1.setAdapter(myAdapter); } //创建适配器类实现接口 class MyAdapter extends BaseAdapter{ @Override public int getCount() { return 50; } @Override public Object getItem(int i) { return null; } @Override public long getItemId(int i) { return 0; } @Override public View getView(int i, View view, ViewGroup viewGroup) { //声明一个textview对象 TextView view0 = null; //进行判断是否能过复用 if(view != null){ view0 = (TextView)view; }else { view0 = new TextView(mContext); } view0.setTextSize(40); Random random = new Random(); int num = random.nextInt(100); if(num<20){ view0.setText("桃"); view0.setTextColor(Color.parseColor("#ff00ff")); }else if(num<40){ view0.setText("梨"); view0.setTextColor(Color.YELLOW); }else if(num<60){ view0.setText("枣"); view0.setTextColor(Color.RED); }else if(num<80){ view0.setText("橘"); view0.setTextColor(Color.parseColor("#d4824f")); }else{ view0.setText("杏"); view0.setTextColor(Color.parseColor("#00ff00")); } return view0; } } }</code></pre> <pre> <code class="language-java"><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="com.wenkai.tigerlistview.MainActivity"> <ListView android:id="@+id/list_item1" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" /> <ListView android:id="@+id/list_item2" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" /> <ListView android:id="@+id/list_item3" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" /> </LinearLayout></code></pre> <h3>5.总结反思</h3> <ul> <li>最近几天木有更新博客是因为AS和系统有些问题,一直在调试发现AS的SDK环境变量多了一个*号,也是服了。不过在stackoverflow上学习了一波还是不错的,还有就是这几天变懒了。</li> <li>学习一些新的知识时如果能用生活中的小例子描述出来就更能加深理解了,编程也来源于生活中。</li> <li>规定自己本学期看书的目标,以专业的为主,其他方面的书也可以看看,本学期就主要专业4本吧,发现逻辑思维还要跟上,拿本益智类型的题来练练哟。</li> </ul> <p> </p> <p>来自:http://www.jianshu.com/p/20abc6a420d4</p> <p> </p>