レイアウトを下にスクロールできるようにするにはどうすればよいですか?


92

画面を下にスクロールして、[返信者:]セクションのデータを表示できません。レイアウトをスクロール可能にするにはどうすればよいですか?

代替テキスト

回答:


203

すべてを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 1つのアイテムだけを含めることができます...したがって、次のようなものがある場合:

<?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>

16
+1。簡単なメモ:aにScrollViewは子を1つしか含めることができないため、現在取得しているのが多数のビューである場合は、それらを1つのビューグループにラップする必要があります(たとえばLinearLayout
David Hedlund 2010

私の問題くださいヘルプを修正する方法私はstackoverflow.com/questions/38588702/...
カルティ

41

相対レイアウトとともにスクロールビューを使用する場合:

<ScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:fillViewport="true"> <!--IMPORTANT otherwise backgrnd img. will not fill the whole screen -->

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingBottom="@dimen/activity_vertical_margin"
        android:paddingLeft="@dimen/activity_horizontal_margin"
        android:paddingRight="@dimen/activity_horizontal_margin"
        android:paddingTop="@dimen/activity_vertical_margin"
        android:background="@drawable/background_image"
    >

    <!-- Bla Bla Bla i.e. Your Textviews/Buttons etc. -->
    </RelativeLayout>
</ScrollView>

1
ビューポートタグとは
Ruchir Baronia 2016

4

それらすべてをScrollView内にラップするだけです

<?xml version="1.0" encoding="utf-8"?>

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.ruatech.sanikamal.justjava.MainActivity">
<!-- Here you put the rest of your current view-->
</ScrollView>

1

はい、とても簡単です。この中にコードを入れるだけです:

<androidx.core.widget.NestedScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent" 
    android:layout_height="match_parent">

//YOUR CODE

</androidx.core.widget.NestedScrollView>

0

上に書かれていることをした後でもスクロールが得られなかった場合.....

設定するandroid:layout_height="250dp"か、あなたが言うことができますxdpどこx任意の数値することができます。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.