我设法让按钮始终可见,这很难看。
根据新的材料设计,我们应该使用RecyclerView而不是ListView,所以我想知道如何只在用户滚动到列表末尾时才显示按钮,但不会一直显示。
此外,由于一些未解决的问题72217,回收站视图无法在工作室中呈现。因此,我无法看到元素按钮和回收器视图如何彼此对齐
mainActivity.xml:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<include android:id="@+id/app_bar" layout="@layout/toolbar"/>
<ImageButton
android:id="@+id/button_previous"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="true"
android:minHeight="25dp"
android:minWidth="70dp"
android:src="@android:drawable/ic_media_previous"/>
<ImageButton
android:id="@+id/button_next"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="true"
android:minHeight="25dp"
android:minWidth="70dp"
android:src="@android:drawable/ic_media_next"/>
<view
android:id="@+id/recycler_view"
android:layout_below="@id/app_bar"
android:layout_width="match_parent"
android:layout_height="match_parent"
class="android.support.v7.widget.RecyclerView"/>
第2期:我只能看到一个FORWARD按钮,而不是2个按钮,即使我在上面的代码中声明了两个并使用过 两个前进后退按钮的属性 alignParentright = true和alignParentLeft = true 。
答案 0 :(得分:1)
我看到两种不同的解决方案,第一种是将RecyclerView和按钮放在ScrollView中,禁用RecyclerView垂直滚动,滚动将由ScrollView管理。它就像下面的代码:
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:id="@+id/partner_detail_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<view
android:id="@+id/recycler_view"
android:layout_below="@id/app_bar"
android:layout_width="match_parent"
android:layout_height="match_parent"
class="android.support.v7.widget.RecyclerView"/>
<ImageButton
android:id="@+id/button_next"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="true"
android:minHeight="25dp"
android:minWidth="70dp"
android:src="@android:drawable/ic_media_next"/>
</LinearLayout>
</ScrollView>
第二个选项是在回收者视图的滚动位于底部时使用setVisibility,this应该可以帮助您对此选项进行排序。
原因是因为你在两个按钮的宽度中都有match_parent,一个是隐藏另一个,如果你将宽度设置为wrap_content,它就会在那里。