2017-05-07 114 views

回答

0

首先,在添加manifest.xml中向android:windowSoftInputMode="adjustResize"您的活動。

然後創建如下的佈局。

  • 父,使用RelativeLayout
  • 把裏面的2名兒童(滾動型和底視圖)
  • 底視圖aligned to bottom
  • ScrollView位於above從底部視圖。

<RelativeLayout 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 
    <ScrollView 
     android:layout_above="@+id/bottomView" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content"> 

     //scrollable content 
    </ScrollView> 

    <RelativeLayout 
     android:id="@+id/bottomView" 
     android:layout_alignParentBottom="true" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content"> 

     //your bottom content 
    </RelativeLayout > 
</RelativeLayout> 
+0

謝謝!它的工作 –