Android-приложение с TextView в ScrollView - PullRequest
0 голосов
/ 06 февраля 2012

Я пытаюсь реализовать приложение для Android. У меня проблемы с TextView в ScrollView. Когда я пишу некоторый текст в TextView в соответствии с его длиной, некоторые строки текста вверху не видны. Я думаю, что они скрыты с другими вещами, которые находятся в верхней части. Вот мой XML-файл.

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LinearLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<RadioGroup
    android:id="@+id/RadioGroup1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" >

    <RadioButton
        android:id="@+id/SayisalRadioButton"
        android:layout_width="158dp"
        android:layout_height="wrap_content"
        android:checked="true"
        android:text="@string/SayisalLoto" />

    <RadioButton
        android:id="@+id/SuperLotoRadioButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/SuperLoto" />

</RadioGroup>

<TableRow
    android:id="@+id/KolonSayisiTableRow"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" >

    <EditText
        android:id="@+id/KolonSayisiEditText"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:hint="@string/KolonSayisiHint"
        android:inputType="number"
        android:text="@string/Bos" >

        <requestFocus />
    </EditText>

    <Button
        android:id="@+id/SallaButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/Uret" />

    <ProgressBar
        android:id="@+id/SonucProgressBar"
        style="?android:attr/progressBarStyleHorizontal"
        android:layout_width="150dp"
        android:layout_height="wrap_content"
        android:visibility="invisible" />

</TableRow>

<ScrollView
    android:id="@+id/SonucScrollView"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_gravity="center" >
    <TextView
        android:id="@+id/SonucTextView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:editable="false"
        android:scrollbarAlwaysDrawVerticalTrack="true"
        android:text="@string/Bos"
        android:textAppearance="?android:attr/textAppearanceMedium" />

</ScrollView>

</LinearLayout>

Например, когда я помещаю текст с несколькими строками в TextView с идентификатором: SonucTextView в соответствии с его размером, я не вижу некоторые части текста вверху. Как я могу решить эту проблему? Это связано с макетом, который я использую?

Ответы [ 3 ]

2 голосов
/ 07 февраля 2012

Ваш вопрос относится к этому .Поэтому я предлагаю вам проверить принятый ответ.

В этом ответе говорится, что все, что вам нужно сделать, это установить максимальное количество строк, которые вы хотите, чтобы оно отображалось, и дать ему полосу прокрутки следующим образом:

<TextView
    android:id="@+id/SonucTextView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"     
    android:editable="false"    
    android:text="@string/Bos"
    android:textAppearance="?android:attr/textAppearanceMedium"
    android:maxLines="5"
    android:scrollbars="vertical" />

А затем перейдите к настройке события в коде:

TexView.setMovementMethod(new ScrollingMovementMethod())

Я хочу добавить, что виджет ScrollView должен использоваться, когда вы хотите прокрутить весь вид, а не один виджет.

Надеюсь, это поможет!

1 голос
/ 07 февраля 2012

Попробуйте:

<ScrollView
    android:id="@+id/SonucScrollView"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_gravity="center" >
    <TextView
        android:id="@+id/SonucTextView"
        android:layout_width="wrap_content"
        android:layout_height="match_parent" // or fixed size
        android:layout_gravity="center"
        android:editable="false"
        android:scrollbarAlwaysDrawVerticalTrack="true"
        android:text="@string/Bos"
        android:textAppearance="?android:attr/textAppearanceMedium" />

</ScrollView>

Если у вас есть wrap_content, у вас не может быть размера для его прокрутки.

0 голосов
/ 12 ноября 2018

Best Way

     <android.support.v4.widget.NestedScrollView
        android:id="@+id/scrollView1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@+id/btmlyt"
        android:layout_below="@+id/deshead_tv">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
           android:orientation="vertical"
           >

        <TextView
            android:id="@+id/des_tv"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_above="@+id/btmlyt"
            android:background="@android:color/white"
            android:paddingLeft="3dp"
            android:paddingRight="3dp"
            android:scrollbars="vertical"
            android:paddingTop="3dp"
            android:text="description"
            android:textColor="@android:color/black"
            android:textSize="18sp" />
        </LinearLayout>

    </android.support.v4.widget.NestedScrollView>
...