Não consigo rolar a tela para baixo para visualizar os dados na seção "Respondido por:". Como posso tornar meu layout rolável?
88
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>
ScrollView
só 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 aLinearLayout
)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>
fonte
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>
fonte
Se você ainda não conseguiu rolar depois de fazer o que está escrito acima ...
Defina o
android:layout_height="250dp"
ou você pode dizerxdp
ondex
pode estar qualquer valor numérico.fonte
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>
fonte