我在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"
就能實現目的了