bl双性强迫侵犯h_国产在线观看人成激情视频_蜜芽188_被诱拐的少孩全彩啪啪漫画

Android嵌套RecyclerView左右滑動替代自定義view

以前的左右滑動效果采用自定義scrollview或者linearlayout來實(shí)現(xiàn),recyclerview可以很好的做這個功能,一般的需求就是要么一個獨(dú)立的左右滑動效果,要么在一個列表里的中間部分一個左右滑動效果

成都創(chuàng)新互聯(lián)公司是一家集網(wǎng)站建設(shè),平川企業(yè)網(wǎng)站建設(shè),平川品牌網(wǎng)站建設(shè),網(wǎng)站定制,平川網(wǎng)站建設(shè)報(bào)價(jià),網(wǎng)絡(luò)營銷,網(wǎng)絡(luò)優(yōu)化,平川網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強(qiáng)企業(yè)競爭力。可充分滿足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時(shí)我們時(shí)刻保持專業(yè)、時(shí)尚、前沿,時(shí)刻以成就客戶成長自我,堅(jiān)持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實(shí)用型網(wǎng)站。

而列表里面也容易,只是需要解決一點(diǎn)小問題,個人認(rèn)為值得一提的就是高度問題,一般的人采用固定死的高度,可是在列表里面展示和機(jī)型的不同,固定死的話很難保證美觀,動態(tài)的高度才能解決問題的所在

首先在一個列表控件布局上添加一個recyclerview控件

<android.support.v7.widget.RecyclerView
  android:id="@+id/plan_recycler"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"/>

然后是adapter適配器布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:orientation="vertical" android:layout_width="wrap_content"
 android:layout_height="match_parent"
 android:padding="@dimen/dimen_20dp">
 <ImageView android:id="@+id/img_icon"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_gravity="center_horizontal"
  android:src="@drawable/bbs_plan_mofa"/>
 <TextView android:id="@+id/tv_content"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_gravity="center_horizontal"
  android:layout_marginTop="@dimen/dimen_8dp"
  android:textSize="15sp"
  android:textColor="@color/color_323232"/>
</LinearLayout>

接下來寫adapter

import android.content.Context;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import com.xulu.loanmanager.R;
import java.util.List;
import butterknife.BindView;
import butterknife.ButterKnife;
/**
 * Created by LiuZhen on 2017/6/22.
 */
public class BBSPlanAdapter extends RecyclerView.Adapter<BBSPlanAdapter.MyViewHolder> {
 private List<String> list;
 private LayoutInflater mInflater;
 private Context context=null;
 private int height;
 private boolean isMeasure = false;
 private CallBack callBack;
 public BBSPlanAdapter(Context context, List<String> list, CallBack callBack) {
  this.context=context;
  this.list = list;
  mInflater = LayoutInflater.from(context);
  this.callBack = callBack;
 }
 @Override
 public MyViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
  View view = mInflater.inflate(R.layout.item_bbsdetail_plan, parent, false);
  if (!isMeasure) {
   view.measure(View.MeasureSpec.UNSPECIFIED, View.MeasureSpec.UNSPECIFIED);
   height = view.getMeasuredHeight();
   callBack.getHeight(height);
  }
  MyViewHolder holder = new MyViewHolder(view);
  return holder;
 }
 public int getHeight(){
  return height;
 }
 @Override
 public void onBindViewHolder(MyViewHolder holder, final int position) {
  holder.itemView.setOnClickListener(new View.OnClickListener() {
   @Override
   public void onClick(View v) {
    callBack.ItemClick(position);
   }
  });
 }
 @Override
 public int getItemCount() {
  return 6;
 }
 static class MyViewHolder extends RecyclerView.ViewHolder{
  @BindView(R.id.tv_content)
  TextView tv_content;
  MyViewHolder(View view){
   super(view);
   ButterKnife.bind(this,view);
  }
 }
 public interface CallBack{
  void getHeight(int height);
  void ItemClick(int position);
 }
}

重點(diǎn)是measure方法,得到測量的高度

接下來就可以直接使用了

private void initScrollList(){
  final RecyclerView planRecycler = (RecyclerView) headView.findViewById(R.id.plan_recycler);
  LinearLayoutManager linearLayoutManager = new LinearLayoutManager(BBSDetailActivity.this);
  linearLayoutManager.setOrientation(LinearLayoutManager.HORIZONTAL);
  planRecycler.setLayoutManager(linearLayoutManager);
  List<String> list = new ArrayList<>();
  BBSPlanAdapter adapter = new BBSPlanAdapter(BBSDetailActivity.this, list, new BBSPlanAdapter.CallBack() {
   @Override
   public void getHeight(int height) {
    ViewGroup.LayoutParams params = planRecycler.getLayoutParams();
    params.height = height;
    planRecycler.setLayoutParams(params);
   }
   @Override
   public void ItemClick(int position) {
    Toast.makeText(BBSDetailActivity.this,""+position,Toast.LENGTH_SHORT).show();
   }
  });
  planRecycler.setAdapter(adapter);
 }

很簡單,完全替代自定義view,效果如下,如果沒有測量這一步可能會出現(xiàn)高度不適合,要么是看不到textview的文字,因?yàn)樘土耍淳褪翘吡耍幻烙^。

Android嵌套RecyclerView左右滑動替代自定義view

以上所述是小編給大家介紹的Android嵌套RecyclerView左右滑動替代自定義view,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時(shí)回復(fù)大家的。在此也非常感謝大家對創(chuàng)新互聯(lián)網(wǎng)站的支持!

網(wǎng)站題目:Android嵌套RecyclerView左右滑動替代自定義view
文章鏈接:http://vcdvsql.cn/article26/pdsjjg.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供微信公眾號面包屑導(dǎo)航網(wǎng)站制作網(wǎng)站維護(hù)網(wǎng)站策劃網(wǎng)站建設(shè)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

成都網(wǎng)站建設(shè)