StackView控件是AdapterViewAnimator的子列,以堆叠的方式显示多个列表项

  • 在布局文件中加入加入一个StackView控件:
<?xml version="1.0" encoding="utf-8"?><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" android:orientation="vertical" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" tools:context="top.hellowoodes.stackview.MainActivity">    <StackView  android:layout_width="match_parent" android:layout_height="wrap_content" android:loopViews="true" android:id="@+id/stackView" />    <LinearLayout  android:orientation="horizontal" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_gravity="bottom">        <Button  android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="上一个" android:id="@+id/button" android:onClick="prev" android:layout_gravity="center_vertical" />        <Button  android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="下一个" android:onClick="next" android:id="@+id/button2" android:layout_gravity="bottom" />    </LinearLayout></LinearLayout>
  • 在代码中为StackView适配Adapter
public class MainActivity extends AppCompatActivity {    StackView stackView;    int[] imageIds = new int[]{            R.drawable.a,R.drawable.b,R.drawable.c,R.drawable.d,R.drawable.e,R.drawable.f    };    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.activity_main);         stackView = (StackView) findViewById(R.id.stackView);        List<Map<String, Object>> listItems = new ArrayList<>();        for (int i = 0; i < imageIds.length; i++) {            Map<String, Object> listItem = new HashMap<String, Object>();            listItem.put("iamge", imageIds[i]);            listItems.add(listItem);        }        SimpleAdapter simpleAdapter = new SimpleAdapter(this,                listItems,                R.layout.cell,                new String[]{"iamge"},                new int[]{R.id.image1});        stackView.setAdapter(simpleAdapter);    }    public void prev(View view) {        stackView.showPrevious();    }    public void next(View view) {        stackView.showNext();    }}
  • R.layout.cell布局文件:
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent">    <ImageView  android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/image1" android:layout_gravity="center" /></LinearLayout>

更多相关文章

  1. Android(安卓)自定义控件,模仿小米秒表样式的时钟,完整代码注解
  2. Android解压中文乱码
  3. Android轮播图封装,下拉刷新相结合
  4. Android8.1 Launcher3 修改行数和列数
  5. Android基于名称、修改时间、大小实现文件夹排序
  6. Android(安卓)— 自定义圆形 ImageView 控件
  7. This tag and its children can be replaced by ~~~
  8. android之RadioButton设置setChecked(true)失效
  9. NDK调试

随机推荐

  1. Android培训班(40)
  2. Android中关于线程使用的几点注意事项
  3. Android实现View隐藏显示渐变动画
  4. Android toolbar与actionbar区别
  5. Android定时任务实现方式归纳总结
  6. Android热修复技术链接收集
  7. Android串口通信:串口读写实例
  8. Android之---RecycleView实现简单的图片
  9. Android Fragment 真正的完全解析(上)
  10. android不同Activity之间的数据共享