android基本控制項學習-----ScrollView

來源:互聯網
上載者:User

標籤:

ScrollView(捲軸)的講解:

一、對於ScrollView捲軸還是很好理解的,共有兩種水平和垂直,ScrollView和HorizontalScrollview,這個裡面不知道該總結寫什麼,說說幾個方法吧

scrollView.fullScroll(ScrollView.FOCUS.DOWN):回到低部

scrollView.fullScroll(ScrollView.FOCUS.UP):回到頂部

scrollView.setVerticalSrcollBarEnabled(false):隱藏滑塊(好像設定了沒什麼用)

android:scrollbarThumbVertical:設定垂直滾動的圖片(好像設定了沒什麼用)

android:scrollbarThumbHorizontal:設定水平滾動的圖片(好像設定了沒什麼用)

android:srollbars = "none"隱藏滑塊(好像設定了沒什麼用)

如果我們要控制滑塊的滑動速度我們需要繼承ScrollView複寫public void fling (int velocityY)的方法,這個個人覺得單獨總結ScrollView沒什麼說的,先就這些吧

二.簡單使用

<?xml version="1.0" encoding="utf-8"?><LinearLayout    xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:orientation="vertical">    <Button        android:id="@+id/btn1"        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:text="回到頂部"/>    <Button        android:id="@+id/btn2"        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:layout_marginTop="10dp"        android:text="回到底部"/>   <ScrollView       android:id="@+id/sv"       android:layout_width="match_parent"       android:layout_height="wrap_content">       <TextView           android:id="@+id/tv1"           android:layout_width="match_parent"           android:layout_height="wrap_content"           android:scrollbarThumbVertical="@mipmap/ic_launcher"           android:text="哈哈"/>   </ScrollView></LinearLayout>

Java代碼

package com.example.test3;import android.app.Activity;import android.os.Bundle;import android.view.View;import android.widget.Button;import android.widget.ScrollView;import android.widget.TextView;public class MainActivity extends Activity implements View.OnClickListener{    private  TextView textView;    private ScrollView scrollView;    private Button btn1;    private Button btn2;    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.activity_main);        textView = (TextView) findViewById(R.id.tv1);        scrollView = (ScrollView) findViewById(R.id.sv);        btn1 = (Button) findViewById(R.id.btn1);        btn2 = (Button) findViewById(R.id.btn2);        btn1.setOnClickListener(this);        btn2.setOnClickListener(this);        StringBuffer sb = new StringBuffer();        for(int i = 0;i < 100;i++){            sb.append("呵呵" + i + "\n");        }        textView.setText(sb.toString());    }    @Override    public void onClick(View view) {        switch (view.getId()){            case  R.id.btn1:{                scrollView.fullScroll(ScrollView.FOCUS_UP);                break;            }            case R.id.btn2:{                scrollView.fullScroll(ScrollView.FOCUS_DOWN);                break;            }        }    }}

:

 

android基本控制項學習-----ScrollView

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.