在项目中用到的RecyclerView嵌套FlowTabLayout(流式布局),FlowTabLayout显示不全的问题,
这里主要是布局的问题,RecyclerView的item的布局写成下面这样,就可以了:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingLeft="16dp"
android:paddingRight="14dp"
android:paddingTop="10dp">
<TextView
android:id="@+id/text_f"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=""
android:textColor="#666666"
android:textSize="18sp"
android:textStyle="bold" />
<com.fly.widget.TagLayout
android:layout_below="@+id/text_f"
android:id="@+id/flow_layout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="14dp" />
</RelativeLayout>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" 这两行是关键
android:orientation="vertical"
android:paddingLeft="16dp"
android:paddingRight="14dp"
android:paddingTop="10dp">