Проблема в отображении TextView - PullRequest
0 голосов
/ 21 апреля 2011

Я сделал один макет в моем приложении, где у меня есть TextView и в котором я должен показать абзац.Теперь i9 установил все содержимое в XML-файл, как показано ниже.Но он не может видеть весь текст, и последняя строка абзаца обрезается.,,Что я должен сделать для этого?Помоги мне.,,Благодарю.Код:

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

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal"

            >
            <Button
                android:layout_height="35dip"
                android:layout_width="wrap_content"
                android:text="1973"
                android:textColor="#ffffff"
                android:layout_marginTop="7dip"
                android:background="@drawable/histry"/>
            <TextView
                    android:layout_height="100dip"
                    android:layout_width="wrap_content"
                    android:textSize="12px"
                    android:layout_marginLeft="5dip"
                    android:singleLine="false"

                    android:text="Tony Collier, a cook at the Grandview Foundation in Pasadena, begins collecting and distributing food. Collier receives more food donations from local businesses than anticipated and he shares the food with other organizations helping the hungry.  Collier begins the first search for a larger facility by moving the small operation into a two-car garage."/>

        </LinearLayout>     

    </LinearLayout>

Ответы [ 3 ]

0 голосов
/ 21 апреля 2011
<LinearLayout
        android:layout_height="wrap_content"
        android:layout_width="fill_parent"
        xmlns:android="http://schemas.android.com/apk/res/android">

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal"

            >
            <Button
                android:layout_width="wrap_content"
                android:text="1973"
                android:textColor="#ffffff"
                android:layout_marginTop="7dip"
                android:background="#ffff" android:layout_height="wrap_content"/>
            <TextView
                    android:layout_width="wrap_content"
                    android:layout_marginLeft="5dip" android:text="Tony Collier, a cook at the Grandview Foundation in Pasadena, begins collecting and distributing food. Collier receives more food donations from local businesses than anticipated and he shares the food with other organizations helping the hungry.  Collier begins the first search for a larger facility by moving the small operation into a two-car garage." android:textSize="12dip" android:layout_height="wrap_content"/>

        </LinearLayout>     

</LinearLayout>

Проверьте это

Я попробовал то, что вам нужно, это просто

<?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">
    <LinearLayout android:id="@+id/LinearLayout01" android:layout_height="match_parent" android:orientation="horizontal" android:layout_width="fill_parent">
        <Button android:id="@+id/Button01" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textColor="#ffff" android:background="@drawable/icon" android:text="1222"></Button>
        <TextView android:id="@+id/TextView01" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Text  Tony Collier, a cook at the Grandview Foundation in Pasadena, begins collecting and distributing food. Collier receives more food donations from local businesses than anticipated and he shares the food with other organizations helping the hungry.  Collier begins the first search for a larger facility by moving the small operation into a two-car garage."></TextView>
    </LinearLayout>
</LinearLayout>
0 голосов
/ 21 апреля 2011

Вы должны установить некоторые атрибуты для вашего TextView.

Ex.
layout_width
MaxLines
minLines

Пожалуйста, обратитесь к http://developer.android.com/reference/android/widget/TextView.html.

0 голосов
/ 21 апреля 2011

set Freezes Text = "true" свойство TextView ..

...