Как показать TextView в формате XML - PullRequest
2 голосов
/ 27 октября 2011

У меня есть макет, сделанный в XML для приложения Android.Последнее текстовое представление не отображается.Зачем?Что я могу сделать?я пытаюсь установить linearlayout с высотой: fill_parent, wrap_content и match_parent: это макет:

<?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="@drawable/sfondo">
<LinearLayout android:id="@+id/linearLayout2"
    android:layout_height="wrap_content" android:layout_width="match_parent"
    android:orientation="vertical">
    <LinearLayout android:id="@+id/linearLayout1"
        android:layout_height="fill_parent" android:weightSum="1"
        android:layout_width="fill_parent" android:orientation="horizontal">
        <ImageButton android:id="@+id/back1" android:src="@drawable/back"
            android:background="@null" android:layout_marginTop="25dip"
            android:layout_width="wrap_content" android:layout_height="wrap_content">
        </ImageButton>
        <ImageView android:layout_height="wrap_content" android:id="@+id/logoTC"
            android:src="@drawable/trovachiavi_contatti" android:layout_width="wrap_content"
            android:layout_marginTop="20dp">
        </ImageView>
        <ImageButton android:id="@+id/infoButton"
            android:background="@null" android:layout_height="wrap_content"
            android:layout_marginTop="10dip" android:src="@drawable/info_mini"
            android:layout_width="wrap_content"></ImageButton>
    </LinearLayout>
</LinearLayout>
<LinearLayout android:layout_width="match_parent"
    android:layout_height="fill_parent" android:id="@+id/layoutGif1"
    android:orientation="vertical">
    <spazio.digitale.com.GIFView
        android:layout_gravity="center" android:layout_width="wrap_content"
        android:layout_height="220dp" android:id="@+id/GIFMulti"
        android:layout_marginLeft="40dp"></spazio.digitale.com.GIFView>
    <TextView android:layout_height="wrap_content" android:id="@+id/testoAiuto"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:layout_width="wrap_content" android:gravity="center"
        android:textColor="@android:color/black" android:layout_marginTop="-210dp"></TextView>
    <ImageButton android:layout_gravity="center|bottom"
        android:layout_width="wrap_content" android:layout_marginTop="25dp"
        android:layout_height="wrap_content" android:background="@null"
        android:id="@+id/avvia_cerca"></ImageButton>
    <TextView android:layout_width="match_parent" android:id="@+id/testoRicercaMulti"
        android:layout_height="wrap_content" android:textColor="@android:color/black"
        android:textSize="14dp" android:gravity="center"
        android:layout_gravity="center" android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp">
    </TextView>
</LinearLayout>

Ответы [ 2 ]

3 голосов
/ 27 октября 2011

Мне кажется, что ваш макет просто не подходит.Оберните ваши взгляды в ScrollView, например:

<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="@drawable/sfondo">

   ...

    <ScrollView android:id="@+id/scroll" android:layout_width="fill_parent"
        android:layout_height="wrap_content">

    <TextView android:layout_width="match_parent" android:id="@+id/testoRicercaMulti"
        android:layout_height="wrap_content" android:textColor="@android:color/black"
        android:textSize="14dp" android:gravity="center"
        android:layout_gravity="center" android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp">
    </TextView>

    </ScrollView>
</LinearLayout>

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

1 голос
/ 27 октября 2011

ваш макет не помещается на вашем экране. оберните ваш основной LinearLayout внутри ScrollView.

...