Wie kann ich mein Layout nach unten scrollen lassen?

86

Ich kann nicht auf dem Bildschirm nach unten scrollen, um die Daten im Abschnitt "Antwort von:" anzuzeigen. Wie kann ich mein Layout scrollbar machen?

Alt-Text

Prateek Raj
quelle

Antworten:

196

Wickeln Sie einfach alles in ein 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>

Wie David Hedlund sagte, ScrollView kann nur einen Artikel enthalten ... wenn Sie also so etwas hatten:

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

Sie müssen es ändern in:

<?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>
Cristian
quelle
14
+1. Ein kurzer Hinweis: a ScrollViewkann nur ein Kind enthalten. Wenn Sie also derzeit viele Ansichten haben, müssen Sie diese in eine Ansichtsgruppe einschließen (sagen wir a LinearLayout)
David Hedlund
1
Vielen Dank, dass Sie @David Hedlund
Prateek Raj
Wie ich mein Problem beheben kann, helfen Sie mir bitte stackoverflow.com/questions/38588702/…
Karthi
39

Für die Verwendung der Bildlaufansicht zusammen mit dem relativen Layout:

<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>
Vinil Narang
quelle
1
Was ist das Ansichtsfenster-Tag
Ruchir Baronia
4

Wickeln Sie das alles einfach in eine 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>
Sani Kamal
quelle
0

Wenn Sie nach dem, was oben geschrieben wurde, nicht einmal einen Bildlauf erhalten haben .....

Stellen android:layout_height="250dp"Sie ein oder Sie können sagen, xdpwo xein beliebiger numerischer Wert sein kann.

Rahul Singhal
quelle
0

Ja, es ist sehr einfach. Geben Sie einfach Ihren Code ein:

<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>
Abhishek
quelle