雑多な技術系メモ

自分用のメモ。内容は保証しません。よろしくお願いします。

スクロールビューの付け方メモ

スクロールは、レイアウトファイルにを付け加えるだけ表示できる

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/scrollView" >

        <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="New Text"
        android:textColor="#FF0000"
        android:id="@+id/routeText" />
    </ScrollView>


</LinearLayout>