Ich habe ein Problem in meinem Activity
. Die ScrollView
scrollt nicht nach unten. Hier ist meine XML-Layout der ScrollView
:Scroll Ansicht funktioniert nicht richtig mit Polsterung
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/test"
android:paddingRight="@dimen/layoutsPadding"
android:paddingTop="@dimen/layoutsPadding"
android:paddingLeft="@dimen/layoutsPadding"
android:paddingBottom="@dimen/scrollViewLayoutsPadding">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/tab_introduction_background"
android:orientation="vertical"
android:padding="@dimen/layoutsPadding">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/tab_introduction_title"
android:textSize="@dimen/bigFont"></TextView>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="@dimen/gap_titleAndText">
</LinearLayout>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/tab_introduction_description"
android:textSize="@dimen/smallFont"></TextView>
</LinearLayout>
</ScrollView>
Was kann ich tun?
Versuchen Sie, die 'LinearLayout' die Polsterung entfernen. –
funktioniert, aber ich möchte lineares Layout Padding haben –
Überprüfen Sie die Antwort. Lass es mich wissen, wenn das nicht für dich funktioniert. –