ниже - мой макет, используемый для ListViewItem в ListViewActivity
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:background="@drawable/list_single" >
<TextView
android:id="@+id/listUp_RecipeInstructionNumberTextBoxId"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/header_orange"
android:text="1"
android:textSize="30dip" />
<TextView
android:id="@+id/listUp_RecipeInstructioTextTextBoxId"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="15dp"
android:text="This is the instruction info"
android:textSize="14dip" />
<ImageView
android:layout_height="56dp"
android:layout_width="63dp"
android:id="@+id/listUp_RecipeInstructionImageViewId"
android:layout_marginLeft="15dp"
android:layout_weight="1" />
</LinearLayout>
Сначала ImageView находится в видимости = ушел.Затем пользователь делает снимок с помощью камеры, и видимость ImageView становится ВИДИМОЙ, и я обновляю ImageView, чтобы использовать сделанный снимок.
В случае, если TextView пуст - он отображается в размере corrent.Но когда у меня есть текст, который попадает в конец ListViewItem (длинный текст и сначала ImageView находится в Visibilite GONE), а затем я делаю снимок, тогда он отображается в неправильном размере.намного меньше
Как это исправить?