android – 仅隐藏Scroll上的Action栏而不是 *** 作栏选项卡

android – 仅隐藏Scroll上的Action栏而不是 *** 作栏选项卡,第1张

概述我在向下滚动时试图隐藏 *** 作栏时出现问题.然后在向上滚动时, *** 作栏必须再次显示. 对于Eg: 我推荐了这个Tutorial.在这里你可以看到与隐藏相关的输出和相应代码并显示 *** 作栏. 我正在展示我到目前为止得到的输出. 向下滚动后: 上面显示的屏幕截图,它也隐藏了 *** 作栏标签.但是它必须只隐藏 *** 作栏.这是主要问题. 向上滚动后: 上面的屏幕截图显示它显示带有标签的 *** 作栏. TopRatedFragmen 我在向下滚动时试图隐藏 *** 作栏时出现问题.然后在向上滚动时, *** 作栏必须再次显示.

对于Eg:

我推荐了这个Tutorial.在这里你可以看到与隐藏相关的输出和相应代码并显示 *** 作栏.

我正在展示我到目前为止得到的输出.

向下滚动后:

上面显示的屏幕截图,它也隐藏了 *** 作栏标签.但是它必须只隐藏 *** 作栏.这是主要问题.

向上滚动后:

上面的屏幕截图显示它显示带有标签的 *** 作栏.

topRatedFragment.java:

import info.androIDhive.tabsswipe.R;import androID.app.Actionbar;import androID.content.res.TypedArray;import androID.os.Bundle;import androID.support.v4.app.Fragment;import androID.vIEw.LayoutInflater;import androID.vIEw.VIEw;import androID.vIEw.VIEwGroup;import androID.vIEw.VIEwTreeObserver;import androID.vIEw.Window;import androID.Widget.ScrollVIEw;public class topRatedFragment extends Fragment implements VIEwTreeObserver.OnScrollChangedListener {    private float mActionbarHeight;    private Actionbar actionbar;    @OverrIDe    public VIEw onCreateVIEw(LayoutInflater inflater,VIEwGroup container,Bundle savedInstanceState) {        VIEw rootVIEw = inflater.inflate(R.layout.fragment_top_rated,container,false);        final TypedArray styledAttributes = getActivity().gettheme().obtainStyledAttributes(                new int[] { androID.R.attr.actionbarSize });        mActionbarHeight = styledAttributes.getDimension(0,0);        styledAttributes.recycle();         actionbar = getActivity().getActionbar();          ((ScrollVIEw)rootVIEw.findVIEwByID(R.ID.parent)).getVIEwTreeObserver().addOnScrollChangedListener(this);        return rootVIEw;    }    @OverrIDe    public voID onScrollChanged() {        float y = ((ScrollVIEw)getActivity().findVIEwByID(R.ID.parent)).getScrollY();        if (y >= mActionbarHeight && actionbar.isShowing()) {            actionbar.hIDe();        } else if ( y==0 && !actionbar.isShowing()) {            actionbar.show();        }    }}

fragment_top_rated.xml:

<?xml version="1.0" enCoding="utf-8"?>    <ScrollVIEw xmlns:androID="http://schemas.androID.com/apk/res/androID"        androID:ID="@+ID/parent"        androID:layout_wIDth="fill_parent"        androID:layout_height="fill_parent" >        <linearLayout            androID:ID="@+ID/linearLayout1"            androID:layout_wIDth="match_parent"            androID:layout_height="wrap_content"              androID:paddingtop="?androID:attr/actionbarSize"             androID:orIEntation="vertical" >              <button                androID:ID="@+ID/button1"                androID:layout_wIDth="match_parent"                androID:layout_height="wrap_content"                androID:text="button" />            <button                androID:ID="@+ID/button5"                androID:layout_wIDth="match_parent"                androID:layout_height="wrap_content"                androID:text="button" />               .               .    </linearLayout>    </ScrollVIEw>

我的问题是,向下滚动它只需要隐藏 *** 作栏而不是 *** 作栏选项卡.

解决方法 我认为 this library及其样本可以帮到你.

看看右上角的gif动画:

我认为示例文件名为“ViewPagerTabScrollViewActivity”

总结

以上是内存溢出为你收集整理的android – 仅隐藏Scroll上的Action栏而不是 *** 作栏选项卡全部内容,希望文章能够帮你解决android – 仅隐藏Scroll上的Action栏而不是 *** 作栏选项卡所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1136568.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存