Ich habe ein Problem mit meiner ScrollView. Ich möchte es in den verfügbaren Platz passen, aber ich weiß nicht wie.Fit Scroll Ansicht zu verfügbaren Speicherplatz in Android
Jetzt habe ich meine Scroll und meine Textview vor einem Linearlayout:
<ScrollView
android:id="@+id/scrollView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:fillViewport="true"
android:layout_alignParentLeft="true"
android:layout_below="@+id/previousimage"
android:layout_marginTop="@dimen/margin">
<TextView
android:id="@+id/question_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/margintop"
android:gravity="center_horizontal"
android:paddingBottom="@dimen/margin_five"
android:scrollbars="vertical"
android:textColor="@color/white"
android:textSize="@dimen/common_textsize" />
</ScrollView>
<LinearLayout
android:id="@+id/bottom_options"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_below="@+id/scrollView"
android:layout_marginTop="@dimen/margin_small"
android:gravity="center|bottom"
android:orientation="vertical">
Das Problem ist, dass, wenn ich so viel Text in meinem Textview haben gehen die Linearlayout nach unten und es hides.I den Text scrollen möchten Innerhalb. Ohne das LinearLayout herunterzudrücken.
Ich möchte diesen Platz für ScrollView automatisch an alle Bildschirmgröße anpassen.
Vielen Dank!
Ich denke, Ihr lineares Layout ist hier nutzlos. –
Hallo, überprüfe das. http://stackoverflow.com/questions/1748977/making-textview-scrollable-in-android – PSone