美文网首页android 开发程序员
ScrollTo 和 ScrollBy的使用

ScrollTo 和 ScrollBy的使用

作者: 靓亮 | 来源:发表于2017-05-29 11:05 被阅读0次

先看布局:
Scroll 解释: 滚动 文本框中的起始滚动行

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools" android:id="@+id/activity_main"
    android:layout_width="match_parent" android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:orientation="vertical"
    tools:context="test.pgl.com.scrolltext.MainActivity">
    <Button
        android:text="scrollto"
        android:onClick="scrollto"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        />
    <Button
        android:text="scrollby"
        android:onClick="scrollby"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        />
    <TextView
        android:id="@+id/tv_text"
        android:background="#ff00"
        android:textColor="#00ff00"
        android:layout_width="300dp"
        android:layout_height="300dp"
        android:text="Hello World!" />

</LinearLayout>

ScrollTo 和 ScrollBy

共同点 都可以移动View的内容 传入负数向右yido

ScrollTo传的是坐标点的值 scrollBy移动的距离

package test.pgl.com.scrolltext;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;

public class MainActivity extends AppCompatActivity {

    private TextView tv_text;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        tv_text = (TextView) findViewById(R.id.tv_text);
    }

    public void scrollby(View view) {
        tv_text.scrollBy(-40,0);
    }

    public void scrollto(View view) {
        tv_text.scrollTo(0,-100);
    }
}

这里要注意一下:
当坐标为"-40"负的时会出现下面这种: 但是这没影响

Paste_Image.png

还有就是: 这里的坐标要写负的才会向x,y正方向移动,这和平时的相反

运行:

Paste_Image.png

点击scrollto:

Paste_Image.png

点击scrollby:

Paste_Image.png

再点击scrollby:

Paste_Image.png

每点击一次scrollby就会向右移动 直到移出
这时点击scrollto:

Paste_Image.png

将回到 指定的位置:

 public void scrollto(View view) {
        tv_text.scrollTo(0,-100);
    }

相关文章

网友评论

    本文标题:ScrollTo 和 ScrollBy的使用

    本文链接:https://www.haomeiwen.com/subject/ajehfxtx.html