Day 24 - Android Studio ScrollView的基本使用
昨天我們寫了一篇實作程式,不知道大家有沒有學起來,今天我們要再增加我們的程式工具,今天我們要講的是Android Studio裡面ScrollView的基本使用。
我們在平常用程式的時候,常常會遇到內容超出頁面大小,因此有可以滾動的頁面,通常這種就頁面裡面就會有ScrollView,通常,垂直滾動就是ScrollView,而水平移動就是HorizontalScrollView,今天我主要會強調在ScrollView,兩者其實並沒有什麼差別,只差在方向而已。
先新增一個ScrollView到我們的Design裡面,ScrollView需要超過頁面大小才可以進行滑動,所以我們就拉一個TextView包在我們的ScrollView裡,並用迴圈不斷寫入的方式,撐爆我們的TextView,這樣我們就可以進行滑動了
xml程式碼:
<ScrollView
android:id="@+id/scrollView2"
android:layout_height="match_parent"
android:layout_width="fill_parent"
android:scrollbarStyle="insideOverlay"
android:scrollbars="vertical"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.0"
tools:ignore="HardcodedText,SpeakableTextPresentCheck">
<TextView
android:id="@+id/textView3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text=""
android:textSize="30sp" />
</ScrollView>
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="156dp"
android:layout_marginTop="528dp"
android:onClick="main"
android:text="@string/button"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
主程式:
package com.example.myapplication
import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import android.view.View
import android.widget.TextView
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
}
fun main(view: View){
var textView:TextView = findViewById(R.id.textView3)
for(i in 1..100){
textView.append("撐爆/")
}
}
}
我們就直接運行我們的程式吧!
在我們按下按鈕後,就出現能夠讓我們滑動的頁面啦!
明天我可能會講比較重點的,我會講Socket的實際應用,這有可能會沾到一點Python,或者我會繼續講Android Studio的其他新工具。