我想创建一个Android应用程序。对于我的主屏幕,我使用选项卡式活动。看起来我想要。但是当我使用ScrollView环绕我的TextView时,它只会滚动文本,但它应该如下所示:
所以在我滚动之前应该看一下:
滚动后就像这样:
以下是选项卡式活动:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="@dimen/appbar_padding_top"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/AppTheme.PopupOverlay">
</android.support.v7.widget.Toolbar>
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end|bottom"
android:layout_margin="@dimen/fab_margin"
android:src="@android:drawable/ic_dialog_email" />
这里有文字Fragment:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.obware.story.Activitys.MainActivity$PlaceholderFragment">
<TextView
android:id="@+id/section_label"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
有谁知道我该怎么做?
答案 0 :(得分:0)
由于这是一个Tablayout,我假设您正在使用Fragments和ViewPager。 (即使没有viewpager,这仍然适用)
在这种情况下,您必须向您的活动发送答案,该活动是隐藏工具栏的基础。在基础活动中声明一个具有Tab布局的接口。
说:
interface HideToolBarInterface{
public void hideTheToolbar(boolean shouldbehidden);
}
现在在您的活动中实现此接口并覆盖声明的抽象方法。
例如:
public void hideTheToolbar(boolean shouldbehidden){
if(shouldbehidden){
getSupportActionBar().hide(); // if you have set your own toolbar, hide it similarly
}else{
getSupportActionBar().show();
}
}
现在在片段中,将onScrollListener设置为ListView或RecyclerView,无论您使用什么来显示列表。
现在滚动列表时,可以使用Listeners onScrollChanged,应用逻辑调用接口方法隐藏工具栏,如:
//on some condition(say SCROLL_STATE_FLING) do the following:
((HideToolbarInterface)getActivity()).hideTheToolbar(true);
//on some other conditon(say SCROLL_STATE_IDLE unhide it:
((HideToolbarInterface)getActivity()).hideTheToolbar(false);
您可以在此处查看其他选项:
android lollipop toolbar: how to hide/show the toolbar while scrolling?