搜索底部有空格。请检查屏幕截图。对不起我的英语不好。我提供了屏幕截图以便更好地理解。
帮我解决这个问题。
主要活动XML
<android.support.design.widget.CoordinatorLayout 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:background="#ffe5e5e5"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
<include layout="@layout/card_layout" />
<include layout="@layout/card_layout" />
<include layout="@layout/card_layout" />
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="250dp"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:minHeight="?attr/actionBarSize"
android:elevation="0dp"
app:contentScrim="?attr/colorPrimary"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="25dp"
android:layout_marginLeft="20dp"
android:layout_marginTop="20dp"
android:orientation="horizontal">
<ImageView
android:layout_width="30dp"
android:layout_height="25dp"
android:background="@drawable/ic_menu" />
<TextView
android:layout_width="80dp"
android:layout_height="25dp"
android:layout_marginLeft="0dp"
android:gravity="center"
android:text="FlipKart"
android:textColor="@android:color/white"
android:textStyle="bold" />
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/imageviewCircle"
android:layout_width="10dp"
android:layout_height="10dp"
android:layout_gravity="end"
android:layout_marginLeft="100dp"
android:background="@drawable/circle" />
<ImageView
android:id="@+id/imageviewBell"
android:layout_width="25dp"
android:layout_height="wrap_content"
android:layout_gravity="end"
android:layout_marginLeft="100dp"
android:background="@drawable/ic_bell" />
</RelativeLayout>
<ImageView
android:layout_width="25dp"
android:layout_height="wrap_content"
android:layout_gravity="end"
android:layout_marginLeft="10dp"
android:background="@drawable/ic_cart" />
</LinearLayout>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginTop="80dp"
android:background="@drawable/rounded_edittext"
android:elevation="0dp"
app:layout_collapseMode="parallax"
app:layout_scrollFlags="scroll|enterAlways">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="25dp"
android:orientation="horizontal"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<ImageView
android:id="@+id/imageviewSearch"
android:layout_width="25dp"
android:layout_height="25dp"
android:background="@drawable/ic_magnify" />
<TextView
android:id="@+id/textviewSearch"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="30dp"
android:layout_marginTop="3dp"
android:cursorVisible="true"
android:editable="true"
android:elevation="0dp"
android:hint="Search for products,Brands "
android:textColorHint="@android:color/darker_gray" />
</RelativeLayout>
</android.support.v7.widget.Toolbar>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
</android.support.design.widget.CoordinatorLayout>
大家好。 我提供了一个XML文件片段。由于我是一个菜鸟,我请求StackOverflow军队寻求帮助。
非常感谢帮助我。
答案 0 :(得分:0)
RevCommit srcParent = srcCommit.getParent(mainlineIndex);
你已经对mainlineIndex
的高度进行了硬编码,所以很明显每次都会 250dp 。调整该值以获得正确的<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="250dp"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
。
尝试使用CollapsingToolbarLayout和AppBarLayout的包装内容,如果它不起作用,那么尝试使用120dp到150dp的值为AppBarLayout和match_parent用于CollapsingToolbar