如何将焦点放在textView中新生成的文本的顶部?

时间:2012-05-08 08:40:28

标签: java android

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

感谢您的时间。

1 个答案:

答案 0 :(得分: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>

<强>的java:

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);
    }
}