1

是否有任何过程在运行时逐渐增加 ScrollView 的高度。我的意图是逐渐显示 ScrollView 内的图像。所以我想增加 ScrollView 的高度。有什么办法可以完成我的工作吗??请帮帮我。我的 XmlFile 的内容是:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/rootLayout"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >

    <ScrollView
        android:id="@+id/scrollView1"
        android:layout_width="wrap_content"
        android:layout_height="80dp"
        android:scrollbars="none"
        android:layout_x="0dp"
        android:layout_y="0dp"
        android:fillViewport="true" >

        <LinearLayout
            android:id="@+id/linearLayout1"
            android:layout_width="match_parent"
            android:layout_height="match_parent" >


    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_x="0dp"
        android:layout_y="0dp"
        android:src="@drawable/background" />
        </LinearLayout>

    </ScrollView>

    </LinearLayout>

我的代码是:

final Timer timer = new Timer();
    timer.scheduleAtFixedRate(new TimerTask() {
        public void run() {
          runOnUiThread(new Runnable()
            {
                public void run() {

                    secondCounter++;
                    yourNewHeight += 10;
                    // sv is object of scroll view
                    sv.getLayoutParams().height = yourNewHeight;

                    root.invalidate(); // root is rootview


                    if(secondCounter == 20){
                        timer.cancel();
                    }
                }
            });
        }
    }, delay, period);

这是我的屏幕截图:

在此处输入图像描述

模糊图像在 Scrollview 中,并且随着 ScrollView 的高度增加,模糊图像逐渐显示。

4

2 回答 2

0

我已经编辑了你的代码..

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/rootLayout"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

<ScrollView
    android:id="@+id/scrollView1"
    android:layout_width="fill_parent"
    android:layout_height="80dp">

    <LinearLayout
        android:id="@+id/linearLayout1"
        android:layout_width=" fill_parent"
        android:layout_height="wrap_content" >


<ImageView
    android:id="@+id/imageView1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" 
    android:src="@drawable/background" />
    </LinearLayout>

</ScrollView>

让我知道是否已完成此操作.. 好的..

于 2012-07-13T06:50:14.590 回答
0

您可以使用setLayoutParams(..)以编程方式设置宽度和高度。查看mao在这里给出的问题和解决方案。

于 2012-07-13T07:09:51.580 回答