我有一个CollapsingToolbar
的简单活动。让我告诉你我的第一,然后解释问题是什么!
当工具栏折叠(左)与展开(右)时
如您所见,Search button
不会显示工具栏展开的时间。我该如何解决这个问题?
activity_search.xml:
<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.design.widget.AppBarLayout
android:fitsSystemWindows="true"
android:layout_width="match_parent"
android:layout_height="@dimen/app_bar_height"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.design.widget.CollapsingToolbarLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_collapseMode="parallax"/>
<android.support.v7.widget.Toolbar
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:popupTheme="@style/AppTheme.PopupOverlay"/>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<include
layout="@layout/content_search" />
</android.support.design.widget.CoordinatorLayout>
content_search.xml
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_behavior="@string/appbar_scrolling_view_behavior" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/ll"
android:layout_alignParentTop="true"
android:layout_marginBottom="@dimen/view_margin"
android:orientation="horizontal">
<AutoCompleteTextView
android:id="@+id/etIngredients"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"/>
<ImageButton
android:id="@+id/btAdd"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_add"/>
</LinearLayout>
<Button
android:id="@+id/btSearch"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:text="@string/search"/>
<android.support.v7.widget.RecyclerView
android:id="@+id/rvIngredients"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@id/btSearch"
android:layout_below="@id/ll"/>
</RelativeLayout>
我试过搜索这个问题,但根本找不到任何东西!
答案 0 :(得分:2)
尝试修改您的content_search.xml
:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_behavior="@string/appbar_scrolling_view_behavior" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginBottom="@dimen/view_margin"
android:orientation="horizontal">
<AutoCompleteTextView
android:id="@+id/etIngredients"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"/>
<ImageButton
android:id="@+id/btAdd"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_add"/>
</LinearLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/rvIngredients"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Button
android:id="@+id/btSearch"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:text="@string/search"/>
</LinearLayout>
如果您不需要在屏幕底部显示搜索按钮,请将其移至RecyclerView
上方。
答案 1 :(得分:1)
请检查您的content_search.xml
什么是id android:layout_below="@id/ll"
??
我认为这是线性布局的内容,请添加此内容并希望它能为您提供帮助。
答案 2 :(得分:1)
由于您的可折叠工具栏,它被隐藏了。当你说match_parent时,它取高度,不包括扩展工具栏的高度。您需要做的就是添加工具栏高度的bottom_margin。
希望它会对你有所帮助:)。