Como tornar meu layout capaz de rolar para baixo?


88

Não consigo rolar a tela para baixo para visualizar os dados na seção "Respondido por:". Como posso tornar meu layout rolável?

texto alternativo

Respostas:


200

Envolva tudo isso dentro de um 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>

Como disse David Hedlund, ScrollView pode conter apenas um item ... então, se você tivesse algo assim:

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

Você deve alterá-lo para:

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

15
+1. uma nota rápida: a ScrollViewsó pode conter um filho, então se o que você tem atualmente são muitas visualizações, você precisa agrupá-las em um grupo de visualização (digamos a LinearLayout)
David Hedlund

1
Obrigado @David Hedlund
Prateek Raj

como resolver meu problema, me ajude stackoverflow.com/questions/38588702/…
Karthi

40

Para usar a visualização de rolagem junto com o layout relativo:

<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
Qual é a tag da janela de visualização
Ruchir Baronia

4

Basta envolver tudo isso em um 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>

0

Se você ainda não conseguiu rolar depois de fazer o que está escrito acima ...

Defina o android:layout_height="250dp"ou você pode dizer xdponde xpode estar qualquer valor numérico.


0

Sim, é muito simples. Basta colocar seu código dentro deste:

<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>
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.