ScrollView中的LinearLayout自动滚动到底部

时间:2016-07-28 05:04:40

标签: android android-layout scrollview autoscroll

我有一个占据屏幕下半部分的ScrollView。 在这个ScrollView中,放置一个包含大量内容的LinearLayout(垂直)。 当我开始活动时,内容会自动向下滚动,以便从窗口顶部开始。但我需要它从ScrollView的顶部开始(即在窗口的中心)。 我究竟做错了什么? enter image description here

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="ru.intrigue.activities.EditActivity"
    android:orientation="vertical">

<RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="250dp"
        android:visibility="visible">

 </RelativeLayout>

<ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/scrollView2"
        android:background="@color/colorDarkBack">

           <LinearLayout
            android:orientation="vertical"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:padding="10dp">


                 <!-- content -->

          </LinearLayout>
    </ScrollView>
</LinearLayout>

3 个答案:

答案 0 :(得分:1)

你可以这样做:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:weightSum="1">

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="0.45"
    android:orientation="vertical">

    <ImageView
        android:id="@+id/frag_home_iv_main"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:adjustViewBounds="true"
        android:scaleType="fitXY"
        android:src="@drawable/demo" />

</LinearLayout>

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="0.55"
    android:fadeScrollbars="false">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:weightSum="1">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="0.26"
            android:gravity="center"
            android:orientation="horizontal"
            android:padding="@dimen/padding_5dp"
            android:weightSum="1">

            <ImageView
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="0.3"
                android:src="@drawable/demo" />

            <TextView
                android:id="@+id/fragment_home_tv"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="0.7"
                android:paddingLeft="@dimen/padding_5dp"
                android:text="@string/demo"
                android:textColor="@color/BlackColor" />
        </LinearLayout>
</LinearLayout>


</ScrollView>
</LinearLayout>

答案 1 :(得分:1)

您的问题通过以下代码解决:

在代码下方打开您的活动电话时:

your_scroll_view.post(new Runnable() {
                        @Override
                        public void run() {

                            your_scroll_view.fullScroll(View.FOCUS_DOWN);
                        }
                    });

祝你好运

答案 2 :(得分:0)

您可以使用layout_weight属性

来获得所需的结果
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    android:orientation="vertical">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1">

        <!-- your content here-->

    </LinearLayout>

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">

            <!-- your content here-->

        </LinearLayout>

    </ScrollView>

</LinearLayout>

让我知道它是否对你有帮助。