1

我有一个简单的笑话应用程序。当您按下按钮时,您会得到新的笑话。如果前一个比屏幕大,您可以向下滚动。如果你下到底部然后你去下一个笑话,你会被转移到新生成的笑话的底部,但我希望它到顶部,并自动显示笑话的开头。我怎样才能做到这一点 ?我认为这将通过java代码完成。

感谢您的时间。

4

1 回答 1

0

使用scrollTo(int x, int y)方法,我喜欢在我的 TextView 周围有 ScrollView,但我认为同样的事情只适用于 TextView。希望你能理解!

罗尔夫

例子

xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <ScrollView
        android:id="@+id/scroll"
        android:layout_width="fill_parent"
        android:layout_height="130dp" >

        <TextView
            android:id="@+id/text"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="long\n\n\n\n\n\n\n\n long\n\n\n\n\n\n\n very text here!" />

    </ScrollView>

    <Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="joke" />

</LinearLayout>

爪哇:

package org.sample.example;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.ScrollView;
import android.widget.TextView;

public class AutoscrollActivity extends Activity implements OnClickListener {
    /** Called when the activity is first created. */

    private Button new_joke;
    private TextView joke;
    private ScrollView scroll;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        new_joke = (Button) this.findViewById(R.id.button);
        new_joke.setOnClickListener(this);
        joke = (TextView) this.findViewById(R.id.text);
        scroll = (ScrollView) this.findViewById(R.id.scroll);
    }

    @Override
    public void onClick(View v) {
        joke.setText("Long\n\n\n\n\n\n\n\n joke \n\n\n\n\n\n\n\nlong joke joke");
        scroll.scrollTo(0, 0);
    }
}
于 2012-05-08T10:06:44.350 回答