如何一起使用视图和Web视图 - Android

时间:2014-10-24 22:11:27

标签: java android webview android-webview

如何一起使用视图和webview?例如: 我有一个登录屏幕,登录时访问本地使用webview,最后我想要一个返回登录界面的按钮。

我不知道此资源类型的名称。我想知道如何开始。

谢谢!

登录:

enter image description here

网页视图

enter image description here

当我按下" SAIR" (退出),我需要回登录!我不知道,我怎么做!

1 个答案:

答案 0 :(得分:0)

如果我理解正确,您可以将登录屏幕和WebView一起放到FrameLayout并使用以下内容:

    <FrameLayout android:layout_width="match_parent" android:layout_height="match_parent">
    <WebView
            android:layout_width="match_parent" android:layout_height="match_parent"
            android:id="@+id/web_view">
    </WebView>

    <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent"
                  android:orientation="vertical">
        <!--Your login screen here-->
    </LinearLayout>
</FrameLayout>
// When you logout
loginView.bringToFornt();
// When you login
webView.bringToFront();