ReclyerView相关
牛仔面包
人总是要有梦想的a!
展开
-
RecyclerView的基本使用
新建MessageAdapter类继承RecyclerView.Adapter。public class MessageAdapter extends RecyclerView.Adapter<MessageHolder> { private int RESOURCE_ID = R.layout.app_list_item_message; private List<Message>原创 2017-02-09 09:27:54 · 411 阅读 · 0 评论 -
RecycleView的问题笔记
1.RecycleView中的item中match_parent失效。 @Override public OrderListHolder onCreateViewHolder(ViewGroup parent, int viewType) { mContext = parent.getContext();// View rootView = LayoutIn原创 2017-02-20 10:17:16 · 477 阅读 · 0 评论 -
ListView的item的点击样式
可以给ListView设置android:listSelector="#00000000"然后再给item的最外层layout设置一个Selector <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" androi原创 2016-11-14 10:37:50 · 1578 阅读 · 0 评论 -
ListView嵌套ListView或者ScrollView解决方法
直接看代码 1.这是ListView嵌套ListView的/** * 重写ListView解决嵌套问题 * @author 李忠泽 */public class ListViewForNested extends ListView { public ListViewForNested(Context context) { super(context);原创 2016-09-23 16:59:16 · 280 阅读 · 0 评论 -
Listview的item和里面控件点击事件冲突
两种办法1.设置里面控件的focusable为false2.设置整个item根布局的descendantFocusability为blocksDescendants原创 2016-03-14 12:22:59 · 415 阅读 · 0 评论 -
RecyclerView的搜索
本地搜索1.界面<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://原创 2017-04-25 16:17:56 · 637 阅读 · 0 评论 -
reyclerView的item点击刷新
xml<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@drawable/user_selector_item_default" android:orientation="horizontal"原创 2017-04-25 16:26:47 · 601 阅读 · 0 评论