我有一个TabLayout和一个ViewPager。在选项卡中显示一些片段。 One Fragment由一个NestedScrollView和一个粘滞按钮组成,即使用户向下/向上滚动也应该始终可见。 此外,如果用户向下滚动,我想隐藏工具栏。
目前滚动工作正常,但我的粘滞按钮在启动时不可见,仅在我向下滚动时出现。
这是我的设置(基本上取自Chris Banes cheese-sample https://github.com/chrisbanes/cheesesquare):
包含ViewPager和工具栏的布局:
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:layout_scrollFlags="scroll|enterAlways" />
<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/viewpager"
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="@drawable/ic_done" />
</android.support.design.widget.CoordinatorLayout>
我的片段带有NestedScrollView和Sticky Button:
<FrameLayout android:id="@+id/container"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="52dp"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="200dp"
android:text="Item 1" />
<TextView
android:layout_width="match_parent"
android:layout_height="200dp"
android:text="Item 2" />
<TextView
android:layout_width="match_parent"
android:layout_height="200dp"
android:text="Item 3" />
<TextView
android:layout_width="match_parent"
android:layout_height="200dp"
android:text="Item 4" />
<TextView
android:layout_width="match_parent"
android:layout_height="200dp"
android:text="Item 5" />
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
<Button
android:layout_width="match_parent"
android:layout_height="52dp"
android:layout_gravity="bottom"
android:text="Button" />
</FrameLayout>
我想要达到的结果(启动后的初始状态) - 带有文本“按钮”的按钮应该显示 - 请忽略FAB:
这是我目前得到的结果 - 按钮文字“按钮”不可见 - 请忽略FAB:
如果我向下滚动我的按钮,“按钮”应保持可见,工具栏应该折叠:
你有什么想法吗?
答案 0 :(得分:0)
您需要将粘性按钮放入带有属性
的根CoordinatorLayoutandroid:layout_gravity="bottom|center_horizontal"
或使粘滞按钮的下边距等于?android:actionBarSize
。
答案 1 :(得分:0)
像这样放置SELECT remarks
FROM table
GROUP BY remarks;
SELECT fname, lanme, mname, address, birthday, age, remarks
FROM table
WHERE remarks = <remark>;
NestedScrollView
并像这样设置<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="52dp"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
Button
让我知道这是否有效
答案 2 :(得分:0)
在你的片段中,将父作为相对布局放置按钮放在Framelayout中,并将android:layout_alignParentBottom="true"
这个放到Framelayout。
<FrameLayout android:id="@+id/container"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="52dp"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="200dp"
android:text="Item 1" />
<TextView
android:layout_width="match_parent"
android:layout_height="200dp"
android:text="Item 2" />
<TextView
android:layout_width="match_parent"
android:layout_height="200dp"
android:text="Item 3" />
<TextView
android:layout_width="match_parent"
android:layout_height="200dp"
android:text="Item 4" />
<TextView
android:layout_width="match_parent"
android:layout_height="200dp"
android:text="Item 5" />
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
<FrameLayout android:id="@+id/test"
android:layout_width="match_parent"
android:layout_alignParentBottom="true"
android:layout_height="match_parent">
<Button
android:layout_width="match_parent"
android:layout_height="52dp"
android:text="Button" />
</FrameLayout>
</RelativeLayout>
</FrameLayout>
尝试使用此代码我修改它。