Почему TextView отсутствует? - PullRequest
       13

Почему TextView отсутствует?

0 голосов
/ 06 сентября 2011

Я устанавливаю текст в TextView и EditText программно.но эти виджеты не видны.Если я возьму android: layout_marginTop = "100dp" для Textview, я смогу увидеть эти виджетыПочему так?Можете ли вы предложить мне любой другой способ.Заранее спасибо.

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

<ScrollView android:layout_width="fill_parent"
    android:layout_height="wrap_content" android:layout_gravity="center"
    android:layout_weight="1">
    <LinearLayout android:layout_width="fill_parent"
        android:layout_gravity="center" android:gravity="center"
        android:orientation="vertical" android:layout_height="wrap_content">
<!--  This Textview is not visible -->
        <TextView android:layout_width="fill_parent" android:id="@+id/updateText"
            android:layout_height="wrap_content" android:textColor="@color/homepage_labelText"
            android:layout_gravity="center" android:gravity="center"
             />
 <!--  This EditText box also not visible (only half) -->
        <EditText android:id="@+id/previousText" android:textColor="@color/homepage_labelText"
            android:layout_width="fill_parent" android:layout_height="wrap_content"
            android:cursorVisible="false" android:layout_gravity="center"
              android:layout_marginLeft="10dp" android:maxLines="2"
            android:layout_marginRight="10dp" />
        <TextView android:layout_width="fill_parent" android:id="@+id/text"
            android:layout_height="wrap_content" android:textColor="@color/homepage_labelText" android:text="Complaint"
            android:layout_gravity="center" android:gravity="center"
            android:layout_marginTop="10dp" />
        <EditText android:id="@+id/updateEditText" android:lines="5"
            android:focusable="true" android:inputType="textMultiLine"
            android:gravity="top" android:layout_marginLeft="10dp"
            android:layout_marginRight="10dp" android:textSize="15dp"
            android:layout_width="fill_parent" android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:hint="Enter to update complaint info              " />

    </LinearLayout>
</ScrollView>
<LinearLayout android:orientation="horizontal"
    android:layout_width="fill_parent" android:layout_height="50dp"
    android:gravity="center" android:background="@color/homepage_title_background"
    android:layout_gravity="center">
    <Button android:id="@+id/updateComplaintSubmitButton"
        android:text="  Update  " android:textColor="@color/homepage_labelText"
        android:layout_width="wrap_content" android:layout_height="40dp" />
    <Button android:id="@+id/updateComplaintCancelButton"
        android:text="  Cancel  " android:textColor="@color/homepage_labelText"
        android:layout_marginLeft="30dp" android:layout_width="wrap_content"
        android:layout_height="40dp" />
</LinearLayout>
</LinearLayout>*

1 Ответ

0 голосов
/ 08 декабря 2011

Я думаю, что у меня та же проблема, и это происходит из-за свойства гравитации вашего TextView .. он установлен по центру. Я не знаю наверняка, почему Android скрывает TextView в этом случае, и я тоже пытаюсь это исправить

...