程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程解疑 >> ui-Android webview布局

ui-Android webview布局

編輯:編程解疑
Android webview布局

我在ui裡設置了webview下面有圖片按鈕 但是實際運行的時候卻顯示不了
圖片說明

求大神解答

** 鏈接是自適應屏幕的 怎麼解救????**
!!

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

    <WebView
        android:id="@+id/zhaopin"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1" />

 <RadioGroup
     android:id="@+id/main_fragment_rgp"
     android:layout_width="match_parent"
     android:layout_height="46dp"
     android:layout_alignParentBottom="true"
     android:layout_weight="0.04"
     android:background="@drawable/shape_bottom_radio_group_back"
     android:checkedButton="@+id/main_rbn_news"
     android:orientation="horizontal" >

        <RadioButton
            android:id="@+id/main_rbn_news"
            android:layout_width="71dp"
            android:layout_height="match_parent"
            android:button="@null"
            android:drawableTop="@drawable/selector_rbn_news"
            android:onClick="news" />

        <RadioButton
            android:id="@+id/main_rbn_youhui"
            android:layout_width="92dp"
            android:layout_height="match_parent"
            android:button="@null"
            android:drawableTop="@drawable/selector_rbn_postbar"
            android:onClick="youhui" />

        <RadioButton
            android:id="@+id/main_rbn_zhaopin"
            android:layout_width="82dp"
            android:layout_height="match_parent"
            android:button="@null"
            android:drawableTop="@drawable/zhaopin"
            android:onClick="zhaopin" />
 <RadioButton
            android:id="@+id/main_rbn_about"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:button="@null"
            android:drawableTop="@drawable/about"
            android:onClick="about" />
    </RadioGroup>
</RelativeLayout>

無論我把webview大小怎麼改 她都是全屏顯示網頁

最佳回答:


你的WebView這麼寫:
android:layout_height = "0dp"
android:layout_weight = "1"
就能實現目的了

QQ863017854
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved