我有簡單的佈局有兩個按鈕,你可以在圖片中看到,當我點擊谷歌按鈕,它會打開web視圖谷歌網站,你看它是不開放谷歌網站在全屏幕上顯示這些按鈕兩個,但是當我從我的主要佈局中刪除滾動條,然後webview在全屏幕上顯示谷歌網站,我該如何解決這個問題,因爲我想用戶scrollview在我的主要佈局..在這裏是我的main.xml
XML
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<Button
android:id="@+id/btn_click_login"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:layout_weight="2"
android:text="Google"/>
<Button
android:id="@+id/btn_gmail"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:layout_weight="2"
android:text="Gmail"/>
<WebView
android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
</WebView>
</LinearLayout>
</ScrollView>
享用2活動,一個與按鈕和一個更多與Web視圖,當你點擊按鈕它會轉到另一個活動與webview。 – iNan
什麼你想..button應該消失時,Web視圖打開? –
不要在'ScrollView'中放置一個'WebView' - 這樣做效果不好。 – CommonsWare