1. ホーム
  2. android

[解決済み] レイアウトをスクロールダウンさせるには?

2023-01-06 14:23:36

質問

Replied By:"セクションのデータを表示するために、画面をスクロールすることができません。どうすればスクロールできるレイアウトになりますか?

どのように解決するのですか?

の中に包むだけです。 ScrollView :

<?xml version="1.0" encoding="utf-8"?>
<ScrollView
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent">
    <!-- Here you put the rest of your current view-->
</ScrollView>

David Hedlundが言ったように。 ScrollView は一つの項目だけを含むことができます...ですから、もしあなたがこのようなものを持っていたら

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

に変更する必要があります。

<?xml version="1.0" encoding="utf-8"?>
<ScrollView
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent">
    <LinearLayout
      android:layout_width="fill_parent"
      android:layout_height="fill_parent">
        <!-- bla bla bla-->
    </LinearLayout>
</ScrollView>