Android使用ScrollView實現滾動效果

本文實例為大傢分享瞭ScrollView實現滾動效果的具體代碼,供大傢參考,具體內容如下

如果長文本的內容超過一屏幕 則隻能顯示一屏幕的內容
設置ScrollView 通過滾動瀏覽下面的內容

若將標簽更改為<HorizontalScrollView></HorizontalScrollView>則為水平滾動效果

xml文件:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  tools:context="com.example.lenovo.scrollview.MainActivity">
 
  <ScrollView
    android:id="@+id/scroll"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:scrollbars="none"><!--不顯示右側滾動條 -->
 
    <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:id="@+id/content"
      />
 
  </ScrollView>
 
</android.support.constraint.ConstraintLayout>

MainActivity文件:

package com.example.lenovo.scrollview;
 
import android.annotation.SuppressLint;
import android.app.Activity;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.MotionEvent;
import android.view.View;
import android.widget.Button;
import android.widget.ScrollView;
import android.widget.TextView;
 
public class MainActivity extends Activity {
 
  private TextView tv;
  private ScrollView scrollView;
 
  @SuppressLint("ClickableViewAccessibility")
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    tv=findViewById(R.id.content);
    tv.setText(getResources().getString(R.string.content));
 
    scrollView=findViewById(R.id.scroll);
    //設置監聽器
    scrollView.setOnTouchListener(new View.OnTouchListener() {
      public boolean onTouch(View view, MotionEvent motionEvent) {
        //對motionEvent的參數作判斷
        switch (motionEvent.getAction()){
          case MotionEvent.ACTION_UP:
          {
            break;
          }
          case MotionEvent.ACTION_DOWN:
          {
            break;
          }
          case MotionEvent.ACTION_MOVE:{
            /*
            * (1)getScrollY()--滾動條滑動的距離,從0開始計算
            * (2)getMeasuredHeight()--全長
            * (3)getHeight()--一屏幕的高度
            * */
            //頂部狀態
            if(scrollView.getScrollY()<=0){
              Log.i("Main","滑動到頂部");
            }
            //底部狀態
            if(scrollView.getChildAt(0).getMeasuredHeight()<=scrollView.getHeight()+scrollView.getScrollY()){
              Log.i("Main","滑動到底部");
              tv.append(getResources().getString(R.string.content));//滑動到底部時再次追加本篇文字
            }
 
            break;
          }
 
        }
        return false;
      }
    });
  }
 
}

以上就是本文的全部內容,希望對大傢的學習有所幫助,也希望大傢多多支持WalkonNet。

推薦閱讀: