最新一课 老师指点用Listview适配器

上课前

<?xml version="1.0" encoding="utf-8"?>
    <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"  
     android:layout_width="fill_parent"  
     android:layout_height="fill_parent"  
     android:fadingEdge="vertical">  
    <RelativeLayout  
      android:layout_width="fill_parent"   
      android:layout_height="wrap_content">

<ImageButton
                android:id="@+id/byButton1"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_alignParentLeft="true"
                android:layout_alignParentTop="true"
                android:src="@drawable/empty_p" />

<ImageButton
                android:id="@+id/byButton2"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_below="@+id/byButton1"
                android:src="@drawable/empty_p" />

<ImageButton
                android:id="@+id/byButton3"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_below="@+id/byButton2"
                android:src="@drawable/empty_p" />

<ImageButton
                android:id="@+id/byButton4"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_below="@+id/byButton3"
                android:src="@drawable/empty_p" />

<ImageButton
                android:id="@+id/byButton5"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_below="@+id/byButton4"
                android:src="@drawable/empty_p" />

<ImageButton
                android:id="@+id/byButton6"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_below="@+id/byButton5"
                android:src="@drawable/empty_p" />

<ImageButton
                android:id="@+id/byButton7"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_below="@+id/byButton6"
                android:src="@drawable/empty_p" />

<ImageButton
                android:id="@+id/byButton8"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_below="@+id/byButton7"
                android:src="@drawable/empty_p" />

<ImageButton
                android:id="@+id/byButton9"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_below="@+id/byButton8"
                android:src="@drawable/empty_p" />          
        
    </RelativeLayout>  
    </ScrollView>

上完课后知道用Listview适配器便可达到我想要的

时间: 2024-10-14 12:03:24

最新一课 老师指点用Listview适配器的相关文章

android之ListView,详细介绍实现步骤,举例,自定义listview适配器

android之ListView,详细介绍实现步骤,举例,自定义listview适配器 09. 四 / android基础 / 没有评论 本文来源于www.ifyao.com禁止转载!www.ifyao.com android中如何使用listView是比较重要的,因为很多时候都需要将数据库中的数据以列表显示, 具体使用步骤:大体 1,建立一个item.xml文件,此布局文件布局布局如何具体显示列表中的每一个条目 2,在要使用listview的界面中添加listview控件. 3,activit

结合子类父类和LIstView适配器相关设置,初步体验类的多态。

在初级阶段,我们常对listview的适配器都是在一个activity类中全部写满.当你接触项目多了,你会发现大神都把各种适配器放一个包里,要用直接传如相关参数到适配器的构造方法设置ListView.今天做了个简单的demo,对于菜鸟理解多态有帮助.在MainActivity中代码如下 public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState)

Android开发之适配器-ListView适配器的重复数据

适配器是Android中的数据与View视图的桥梁,作用就是将数据通过适配器显示到对应的View视图上. 工作中,在用ListView做适配器数据时候,有些人肯定碰见过,如何优化效率,但是又出现重复数据的情况,如何避免重复数据而且又能提高ListView大数据量时候的效率呢?,解决方案就是2点: 1. 在getView方法中 进行View的判断,即做convertView ==null 这样的判断,这样是为了提高数据量大的时候的效率. 2.设置数据用setTag()/getTag()方法来进行对

带按钮Listview适配器

本文介绍的工程实现的功能是:按下列表项提示"您点击了第x个列表项,内容为:第x个列表项",按下列表项中的按钮,在日子面板打印"您点击了第x个按钮第x个列表项". 许多自定义适配器都继承BaseAdapter,但对于列表项带有按钮的列表并不是最佳选择,本文介绍的便是关于列表项带有按钮的列表适配器(继承了SimpleAdapter). 界面如下图 先从布局来看,这个界面是用两个xml文件组成,一个较为简单,就是一个ListView <RelativeLayout

自定义ListView适配器

继承BaseAdapter类 覆盖以下4个方法: @Override public int getCount() { return users.size(); } @Override public Object getItem(int position) { return users.get(position); } @Override public long getItemId(int position) { return ((User)getItem(position)).getId();

Android ListView 适配器

ListView 的大体作用是填充数据和用户交互后产生的响应.其绑定数据方式多种,将最近学习的三种总结如下: 1.ListView 和ArrayAdapter (1)建立一个常量类Constant,放置模拟数据 1 public final class Constant { 2 //定义一个数组 3 public static final String[] str = new String[]{"东部", "西部", "南部", "北部

自定义ListView适配器Adapter引用布局文件的情况下实现点击列表项时背景颜色为灰色

listview控件设置适配器的时候,如果使用自定义的adapter,比如MyArrayAdapter extends ArrayAdapter<String> 如果listitem布局文件不做任何处理的话,点击列表项的时候不会出现背景色灰色的现象. 实现思路是:在listitem布局文件中为该布局文件中的父控件:LinearLayout,设置android:background="@drawable/listitemclickseletor" 其中listitemclic

【SpringMVC笔记】第三课 处理器映射器+处理器适配器

第二课的例子中,在springmvc.xml中配置使用了第一种处理器映射器和处理器适配器,如下所示. <!-- 配置第一种处理器映射器 BeanNameUrlHandlerMapping --> <bean class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping"></bean> <!-- 配置第一种处理器适配器 SimpleControllerHandl

关于listview适配器getview的详细说明

博主工作了几年,也用了几年的ListView等AdapterView控件,但关于Adapter的一些问题并没有深入下去,终于有时间学习总结下关于BaseAdapter的一些较深入的话题.本文涉及三个话题:Adapter的回收机制和效率提升,getItemViewType()/getViewTypeCount()方法以及notifyDatasetChanged()使用的注意点. 1.Adapter的回收机制和效率提升 Android在绘制Adapter时,系统首先调用getCount()方法,根据