美文网首页Android开发资料收集区Android知识程序员
Android Wear入门开发之列表WearableListV

Android Wear入门开发之列表WearableListV

作者: Galaxy北爱 | 来源:发表于2016-12-10 09:51 被阅读281次

    今天是周末,祝大家周末愉快。
    --------------------------------周末的分割线--------------------------
    之前说过基本布局的注意和主要使用的方法,并且保证我们的应用显示正常,所以接下来就会讲一下开发中主要用到的一些控件,比如这里的重点WearableListView,在手持设备开发中,应该接触过的盆友都知道列表控件是ListView,这个东西基本上每个应用都会用到,所以列表我们不能忽略,那就一起来研究一下手表上的列表吧。
    1.创建一个叫WearListActivity的类并且继承WearableActivity,然后创建对应的xml文件,自定义名字activity_wear_list.xml。

    Paste_Image.png Paste_Image.png

    准备工作很简单,就不贴源代码了,大概就是这样子,并没有什么神奇的地方。
    2.那么控件都初始化完成了,重点肯定还是在适配器上面,第一反应肯定需要Adapter,没错,就是需要一个来自WearableListView下的Adapter,不是BaseAdapter。

    Paste_Image.png

    是不是很简洁?比BaseAdapter看着好多了,先介绍一个这里几个主要的方法:
    getItemCount:列表的总数(BaseAdapter的getCount);
    onCreateViewHolder:看着就很熟悉了,ListView复用特性必不可少的组成部分,自定义一个ViewHolder 并且创建item的布局。viewType支持多种不同的item布局样式,类似BaseAdapter的getItemViewType;
    onBindViewHolder:上面创建完成item布局,那么绑定数据肯定就是这里了,获取对应的指指定显示到item上。
    自定义适配器WearListAdapter

    package com.tangyx.wear.adapter;
    
    import android.content.Context;
    import android.support.wearable.view.WearableListView;
    import android.view.LayoutInflater;
    import android.view.View;
    import android.view.ViewGroup;
    import android.widget.TextView;
    
    import com.tangyx.wear.R;
    
    import java.util.List;
    
    /**
     * Created by tangyx on 2016/12/10.
     *
     */
    public class WearListAdapter extends WearableListView.Adapter {
        /**
         * 全局上下文
         */
        private Context mContext;
        /**
         * 模拟数据
         */
        private List<String> mData;
    
        public WearListAdapter(Context context, List<String> datas) {
            this.mContext = context;
            this.mData = datas;
        }
    
        @Override
        public WearableListView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
            return new ItemViewHolder(LayoutInflater.from(mContext).inflate(R.layout.adapter_wear_list,null));
        }
    
        @Override
        public void onBindViewHolder(WearableListView.ViewHolder holder, int position) {
            ItemViewHolder viewHolder = (ItemViewHolder) holder;
            String s = mData.get(position);
            viewHolder.mContent.setText(s);
            viewHolder.itemView.setTag(s);
        }
    
        @Override
        public int getItemCount() {
            return mData.size();
        }
        /**
         * 自定义item
         */
        static class ItemViewHolder extends WearableListView.ViewHolder{
            TextView mContent;
            ItemViewHolder(View itemView) {
                super(itemView);
                mContent = (TextView) itemView.findViewById(R.id.content);
            }
        }
    }
    

    自定义adapter_wear_list.xml

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <android.support.wearable.view.CircularButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:color="@color/blue"/>
        <TextView
            android:id="@+id/content"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="10dp"
            android:text="@string/app_name"/>
    </LinearLayout>```
    上面的代码就是Adapter所有的内容。
    通过listView设置Adapter后数据完美显示:
    ![0E32DA52A0857AA8A6CF5926291D4851.jpg](http:https://img.haomeiwen.com/i3982371/73e68e9fbefef233.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
    数据显示完成后,那item点击怎么获取呢?最开始我以为和ListView一样有个OnItemClickListener,很明显不是,因为WearableListView根本没有这么一个接口,所以set一下看看有哪些点击事件,跟点击有关的就发现2个setOnClickListener和setClickListener,反正尝试不要钱,所以我都试了一下,很明显setOnClickListener并没有什么用,所以WearableListView item点击事件就是
    setClickListener,在activity中去实现这个接口WearableListView.ClickListener,发现有个两个方法:
    
    ![Paste_Image.png](http:https://img.haomeiwen.com/i3982371/35617cb8efeb09d9.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
    经过测试发现这个接口主要功能,
    onClick:可以监听到你点击的ViewHolder,其实就是item。
    onTopEmptyRegionClick:这个我随便怎么弄也没触发过,所以别问我,我也不知道干啥用的,如果有盆友发现请告诉我一下,先谢过。
    既然点击能得到ViewHolder那就简单了,我这里是吧数据绑定到itemView上(setTag的方式),itemView就在ViewHolder中,所以这样就能得到数据了。
    
    ![Paste_Image.png](http:https://img.haomeiwen.com/i3982371/d72676b7420a2619.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
    
    
    ![Paste_Image.png](http:https://img.haomeiwen.com/i3982371/ae4b6a160e22c595.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
    总结:有了手持设备的开发积累,所以手表上面找到对应的控件,顺藤摸瓜加上不要钱的实践就能实现你想要的。
    
    <a href="http://www.jianshu.com/p/e8971daaef80" style="">下一篇</a>

    相关文章

      网友评论

      • longsh:WearableListView更像recyclerview控件,特别适配器,几乎一模一样,实现item点击事件可以用recyclerview实现item点击事件一样。创建点击事件接口回调
        7227ae9803fb:WearableListView 本身继承recyclerview
        Galaxy北爱:我也是初学,学习方式和android手机端区别不大,只是因为手表电池的问题,性能要求更高。

      本文标题:Android Wear入门开发之列表WearableListV

      本文链接:https://www.haomeiwen.com/subject/dwiymttx.html