0
上部にはTextview、中央にはRecyclerview、最後にはボタン上に1つのボタンがあります。リサイクルビューへのテキストスクロール親の作成方法
私はすべての要素の上にスクロールビューを置くように、recyclerviewスクロールが見えるときに作りたいです。
これを実装する方法は?ここで
は私のxml<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:id="@+id/buslayout"
android:focusableInTouchMode="true"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="10dp"
android:background="@color/bg_log"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/colorPrimaryDark"
android:textSize="20dp"
android:text="BUSINESS DIRECTRIES"
android:textStyle="bold"
android:layout_weight="1"
/>
</LinearLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/business_recycle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Load more"
android:id="@+id/btnmore"/>
</LinearLayout>
あなたの質問は – YLS
@YLS私は上記の私のxmlのようなレイアウトを持って明らかではないですし、私は下にスクロールする場合、それはrecyclerview上記レイアウトを隠し、そしてもしますIスクロールしてnomoreアイテムをクリックすると、その下のボタンが表示されます。 –
CoordinatorLayoutを使用して、TextViewとBottonのスクロール動作を定義することができます – hakim