我希望我的 textview 自动调整 imageview 的宽度。我想获得下面的图像。基本上相同的图像和文本,但方向不同。这些是图像网格。我只是重新布局。我该如何处理?谢谢
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/card_list"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="7dp"
android:layout_margin="10dip"
android:background="@drawable/layout_bg"
android:orientation="vertical">
<!-- android:background="@drawable/layout_bg"-->
<ImageView
android:id="@+id/image"
android:src="@drawable/content_picture"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:adjustViewBounds="true"
android:contentDescription="Desc"
android:scaleType="centerCrop"/>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="fill_parent" >
<TextView
android:id="@+id/btnItemName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:alpha=".7"
android:background="#00000000"
android:text="Order" />
</RelativeLayout>
</FrameLayout>
更新:
我包括了一个背景:android:background="#00000000"
只是为了表明 textview 的宽度应该适合 imageview 的。文本应覆盖到图像的顶部。我正在使用 Universal-Image-Loader,我认为很难获得图像大小,因为它是从后台下载的。