2016-06-13 9 views
0

このようなボトムシートは、ScrollViewの上にある必要があります。スクロールビューでスクロールビューの上の下のシート

enter image description here

画像は底部シートの背後にあるべきです。下のシートは、その上の進行ボタンがクリックされるまでスクリーン上に常に存在するはずです。どんな助けもありがとう。ありがとう!!

+0

を見てみましょうこれを行うには –

+0

私はこれを行う方法がわからない! @MilindVyas – user6111220

+0

カードビューとして実装しようとしましたか? –

答えて

0

ボトムシート/パネルが常にある場合は、これらのパネルは、この単純化されたXMLのレイアウト例をチェックオーバーラップする必要がtheresの:

<?xml version="1.0" encoding="utf-8"?> 
<!-- This is your root layout element --> 
<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:android_width="match_parent" 
    android:android_height="0dp" 
    android:layout_weight="4"> 

    <ScrollView 
    android:android_width="match_parent" 
    android:android_height="0dp"> 
    <!-- Put your inner grid layout here --> 
    </ScrollView> 


    <!-- this is your bottom panel layout --> 
    <!-- you can control the size of your bottom --> 
    <!-- pane by playing with the layout weights --> 
    <LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="0dp" 
    android:layout_weight="1"> 

    <Button 
     android:text="Proceed" 
     android:background="@drawable/yourSelectorXml" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content"/> 
    </LinearLayout> 

</LinearLayout> 
-1

はあなたが、どのようにこれまでのコード

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:android_width="match_parent" 
    android:android_height="0dp" 
    android:layout_weight="4"> 

    <ScrollView 
     android:android_width="match_parent" 
     android:android_height="0dp"> 
     <!-- Put your inner grid layout here --> 
    </ScrollView> 

    <!-- put your bottom panel layout here --> 

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="0dp" 
     android:layout_weight="1"> 

     <Button 
      android:text="Proceed" 
      android:background="@drawable/yourSelectorXml" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content"/> 
    </LinearLayout> 
</LinearLayout> 
関連する問題