Hello I have a ViewFlipper that flips between 2 views, one view is an ImageView and one is a TextView. The size of the image and text varies depending on what I retrieve from the server. I would like the TextView to always have the same height dimensions as the ImageView so that when the imageview is flipped the size of the textview layout does not change even if there is very little text associated to the textview (if there is a lot of text I want to do an ellipsize="end" if the height of the TextView exceeds the imageview). Below is the code that I am using in my layout:
<ViewFlipper
android:id="@+id/flipperZoneMediumLeft"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/imgZonePic"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:src="@drawable/stock_service1"
android:background="@android:color/black"
android:scaleType="center" />
<TextView
android:id="@+id/txtZoneNameFlipperLeft"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:ellipsize="end"
android:gravity="center"
android:text="This is a description"
android:background="@android:color/black"
android:textColor="@android:color/white" />
</ViewFlipper>
I feel like there is a simple solution to this problem but I am struggling on this way too long. Any help to solve my problem would be much appreciated.
Thanks.