将列表视图滚动到顶部工具栏,以便用户可以正确查看包含列表的屏幕

时间:2016-01-09 03:59:23

标签: android android-fragments scroll

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:android="http://schemas.android.com/apk/res/android">

<android.support.v4.widget.DrawerLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/drawer_layout"
    android:fitsSystemWindows="true"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
 <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal"
        android:baselineAligned="false">



        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1">

            <fragment xmlns:android="http://schemas.android.com/apk/res/android"
                xmlns:map="http://schemas.android.com/apk/res-auto"
                xmlns:tools="http://schemas.android.com/tools"
                android:id="@+id/map"
                android:name="com.google.android.gms.maps.SupportMapFragment"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                />
            <android.support.v7.widget.Toolbar
                android:id="@+id/anim_toolbar"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"

                android:layout_alignParentRight="true"

                android:layout_alignParentEnd="true" />




            <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="200dp"
                android:layout_alignParentBottom="true"
                android:id="@+id/relativeLayout">

                <ListView
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:id="@+id/listView"

                    android:layout_alignParentBottom="false"
                    android:layout_centerHorizontal="false">
                </ListView>

            </RelativeLayout>





        </RelativeLayout>



    </LinearLayout>

<fragment
        android:id="@+id/fragmentdrawer"
        android:layout_width="280dp"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        app:layout="@layout/fragment_navigation_drawer_"
        android:name="com.example.hamees.hf_mainuserinterface.Activity.Activity.NavigationDrawer_Fragment"
        tools:layout="@layout/fragment_navigation_drawer_" />

</android.support.v4.widget.DrawerLayout>

</RelativeLayout>

我需要有一个布局,滚动列表视图底部的列表视图滚动到顶部,以便用户可以查看完整列表。我的布局也有一个地图片段,它将在列表中显示项目的位置。

0 个答案:

没有答案