2016-10-26 14 views
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> 
+0

あなたの質問は – YLS

+0

@YLS私は上記の私のxmlのようなレイアウトを持って明らかではないですし、私は下にスクロールする場合、それはrecyclerview上記レイアウトを隠し、そしてもしますIスクロールしてnomoreアイテムをクリックすると、その下のボタンが表示されます。 –

+0

CoordinatorLayoutを使用して、TextViewとBottonのスクロール動作を定義することができます – hakim

答えて

0
<LinearLayoutandroid:layout_width="match_parent" 
android:layout_height="match_parent" 
android:orientation="vertical" 
android:id="@+id/buslayout" 
android:focusableInTouchMode="true" 
    > 

    <ScrollView 
     android:layout_width="match_parent" 
     android:layout_height="match_parent"> 

     <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:orientation="vertical" 
      android:focusableInTouchMode="true" 
      > 

<LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:orientation="horizontal" 
    android:padding="10dp" 
    android:background="#fffffff" 
    > 
    <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> 
    </ScrollView> 
</LinearLayout> 
+0

スクロールビューを使用してxscriptを使用してonscrollイベントを処理できない場合は、お返事ありがとうございます。なぜ私はそれを削除したのですか? –

関連する問題