我正在尝试将RecyclerView定位在LinearLayout(包含一堆TextViews和ImageView)之上,但无论我尝试多少,我都只能显示RecyclerView或LinearLayout。不是两个。
我想要做的是模拟推特应用中看到的推文屏幕。嵌套的RelativeLayout是推文,RecyclerView是用户回复的推文列表。
奖金 - 如果有人也可以帮助我弄清楚如何隐藏'屏幕上方的recyclerView仅在用户向上滚动时显示。
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scrollView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:fillViewport="true"
android:scrollbars = "vertical"
android:scrollbarStyle="insideInset"
>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<include layout="@layout/toolbar"/>
<android.support.v7.widget.RecyclerView
android:id="@+id/in_reply_to"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:layout_marginLeft="5dp"
android:layout_marginStart="5dp"
android:layout_marginRight="5dp"
android:layout_marginEnd="5dp"
>
<ImageView
android:id="@+id/user_image"
android:layout_width="65dp"
android:layout_height="65dp"
android:layout_marginLeft="10dp"
android:layout_marginStart="10dp"
android:layout_marginTop="5dp"
android:scaleType="fitXY"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
/>
<TextView
android:id="@+id/real_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginStart="10dp"
android:layout_marginTop="5dp"
android:textSize="18sp"
android:layout_toRightOf="@id/user_image"
android:layout_toEndOf="@id/user_image"
/>
<TextView
android:id="@+id/username"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginStart="10dp"
android:layout_marginTop="0dp"
android:layout_below="@id/real_name"
android:layout_toRightOf="@id/user_image"
android:layout_toEndOf="@id/user_image"
android:textSize="15sp"
/>
<TextView
android:id="@+id/tweet"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_below="@id/user_image"
android:textSize="18sp"
/>
</RelativeLayout>
</LinearLayout>
</ScrollView>