gpt4 book ai didi

android - 我如何为我的 Android 应用程序实现像 "auto-hide navigation"这样的 chrome?

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:32:04 25 4
gpt4 key购买 nike

在 Chrome 中,当用户向上/向下滑动内容时,地址栏将被隐藏/显示。

我可以在我的应用中实现类似的逻辑吗?

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
tools:ignore="MergeRootFrame">
<WebView
android:id="@+id/my_webview"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</FrameLayout>

我想知道我是否可以通过以下代码做任何事情,以便在用户向上/向下滑动 webView 时隐藏/显示 ActionBar。

WebView webView = (WebView) findViewById(R.id.my_webview);
webView.setOnTouchListener(new View.OnTouchListener() {
public boolean onTouch (View v, MotionEvent event) {
webView.onTouchEvent(event);
}
});

最佳答案

这种模式称为快速返回。从这个blog post开始.

不过,值得一读this在考虑其用途时。

关于android - 我如何为我的 Android 应用程序实现像 "auto-hide navigation"这样的 chrome?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20649079/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com