2014-07-24 86 views
2

我正在使用webview來加載html數據。Android的webview不填充設備屏幕高度

我想在底部放置兩個按鈕以實現某些功能。

我已經把webview和底部佈局放在一個框架佈局中。

只有當我給它一些特定的高度,例如500dp時,Web視圖才顯示html數據。

底部佈局也隨着webview一起滾動。

請幫我怎麼做到這一點。

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="fill_parent" 
android:layout_height="fill_parent" 
android:orientation="vertical" 
android:padding="10dp" > 

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

    <LinearLayout 
     android:layout_width="fill_parent" 
     android:layout_height="match_parent" 
     android:orientation="vertical" > 

     <TextView 
      android:id="@+id/newsHeading" 
      android:layout_width="fill_parent" 
      android:layout_height="wrap_content" 
      android:gravity="center_horizontal" 
      android:padding="5dp" 
      android:text="Heading" 
      android:textColor="#000000" 
      android:textSize="18sp" /> 

     <WebView 
      android:id="@+id/webviewNews" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:layout_marginTop="30dp" /> 
    </LinearLayout> 

    <RelativeLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_gravity="bottom" 
     android:background="@color/black" 
     android:padding="10dp" > 

     <ImageButton 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:background="@drawable/back1" 
      android:padding="20dp" /> 

     <ImageButton 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_alignParentRight="true" 
      android:background="@drawable/share11" 
      android:padding="20dp" /> 
    </RelativeLayout> 
</FrameLayout> 

</LinearLayout> 
+1

份額的佈局代碼 – ViVekH

+0

採取單獨的佈局顯示的WebView。 – VVB

回答

0

試試這種方式,希望這會幫助你解決你的問題。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical"> 
    <WebView 
     android:layout_width="match_parent" 
     android:layout_height="0dp" 
     android:layout_weight="1"/> 
    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_marginTop="5dp"> 
     <Button 
      android:layout_width="0dp" 
      android:layout_height="wrap_content" 
      android:layout_weight="1" 
      android:text="Button1"/> 
     <Button 
      android:layout_width="0dp" 
      android:layout_height="wrap_content" 
      android:layout_weight="1" 
      android:text="Button2"/> 
     </LinearLayout> 
</LinearLayout> 
0

我有同樣的問題,我已經通過一個RelativeLayout的改變的LinearLayout和所有的「父aligments」設置爲固定的WebView,但這個充滿屏幕。

對於您的佈局,請嘗試將您的按鈕的LinearLayout與父級的底部對齊,並使用錨定的layout_above替換WebView的alignParentBottom。我已經測試過它並且工作正常。

下面是代碼,試試吧:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 

    <WebView 
     android:id="@+id/webview" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_alignParentTop="true" 
     android:layout_alignParentLeft="true" 
     android:layout_alignParentStart="true" 
     android:layout_alignParentRight="true" 
     android:layout_alignParentEnd="true" 
     android:layout_above="@+id/linlyt_buttons"/> 

    <LinearLayout 
     android:id="@+id/linlyt_buttons" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_marginTop="5dp" 
     android:layout_alignParentBottom="true"> 

     <Button 
      android:layout_width="0dp" 
      android:layout_height="wrap_content" 
      android:layout_weight="1" 
      android:text="Button1"/> 

     <Button 
      android:layout_width="0dp" 
      android:layout_height="wrap_content" 
      android:layout_weight="1" 
      android:text="Button2"/> 

    </LinearLayout> 

    <RelativeLayout 
     android:id="@+id/rellyt_imagebuttons" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_alignParentBottom="true" 
     android:layout_gravity="bottom" 
     android:background="@color/black" 
     android:padding="10dp"> 

     <ImageButton 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:background="@android:drawable/ic_menu_close_clear_cancel" 
      android:padding="20dp" 
      android:contentDescription="Back/Cancel"/> 

     <ImageButton 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_alignParentRight="true" 
      android:background="@android:drawable/ic_menu_share" 
      android:padding="20dp" 
      android:contentDescription="Share"/> 

    </RelativeLayout> 

</RelativeLayout>