Android開発爆笑記

レセプターのソフト&ハード開発備忘録

スクロールとレイアウト

Androidの画面をブラウザみたいに上下にスクロール出来るレイアウト指定にする

 

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <LinearLayout
            android:orientation="vertical"
            android:descendantFocusability="beforeDescendants"
            android:focusableInTouchMode="true"
            android:layout_width="match_parent"
            android:layout_height="match_parent">

   …テキストやイメージやボタン

        </LinearLayout>
    </ScrollView>