Android Studio(メモリストのアプリ07_ScrollViewのサンプル)
■一番下までスクロールした時の表示について。
前回、LinearLayoutで多めのViewを追加したら、画面外に出たものはアクセスできずスクロールもできなかった。ScrollViewを導入して、その中にLinearLayoutを入れる。
activity_mainファイル。
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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=".MainActivity">
<TextView
android:id="@+id/tv1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toTopOf="@+id/sc1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<ScrollView
android:id="@+id/sc1"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginBottom="8dp"
android:background="#00BCD4"
android:isScrollContainer="true"
android:nestedScrollingEnabled="false"
android:paddingBottom="60dp"
android:scrollbarStyle="outsideInset"
android:scrollbars="vertical"
android:verticalScrollbarPosition="defaultPosition"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/tv1">
<LinearLayout
android:id="@+id/ll1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center|start|top|left|fill_vertical"
android:layout_marginStart="2dp"
android:layout_marginTop="2dp"
android:layout_marginEnd="2dp"
android:layout_marginBottom="0dp"
android:gravity="center"
android:orientation="vertical" />
</ScrollView>
</androidx.constraintlayout.widget.ConstraintLayout>
MainActivity.javaのファイル。
package com.example.sampleproject008_scrollview;
import androidx.appcompat.app.AppCompatActivity;
import android.graphics.Color;
import android.os.Bundle;
import android.widget.LinearLayout;
import android.widget.ScrollView;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
private static final int MAXLINE_NUM = 100;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
/** 作成コード **/
TextView tv1 = findViewById(R.id.tv1);
tv1.setText("Sample_ScrollView");
LinearLayout ll1 = findViewById(R.id.ll1);
String str = "";
TextView tv3 = new TextView(ll1.getContext());
tv3.setBackgroundColor(Color.GRAY);
str = "DDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBCC00";
tv3.setText(str);
ll1.addView(tv3);
for (int i = 0; i < MAXLINE_NUM; i++) {
TextView tv2 = new TextView(ll1.getContext());
tv2.setBackgroundColor(Color.GRAY);
str = "AABBCC00" + String.valueOf(i);
tv2.setText(str);
ll1.addView(tv2);
}
ScrollView sv1 = findViewById(R.id.sc1);
sv1.setScrollBarSize(100);
sv1.arrowScroll(1);
}
}
上のコードの結果が下のもの。ScrollViewの部分の背景は水色。LinearLayoutの背景は灰色にしている。ScrollViewの「paddingBottom ="60dp"」の設定で灰色の部分の下が詰められている。
一番下までスクロールすると、最後(AABBCC0099)まで表示される。スクロールバーの幅はMainActivity.javaの中で100に設定している。動かした後ですぐ消えるのはデフォルト設定。
LinearLayoutの「layout_marginTop="2dp"」を64dpに変更すると、灰色の上の部分が詰められる。
こちらでは、一番下までスクロールしても**096の途中までしか表示されない。
layout_gravity, gravityで、ViewやViewの中身の表示の位置などを変更できるようなので、スクロール後の表示を正しく行う方法はいろいろあるかもしれない。とりあえずは、設定はScrollViewのpaddingBottomで行った方がよさそう。