イメージビューの幅に関係なく、テキストビューを自動調整したいと思います。私は下のイメージを達成したい。基本的に同じ画像とテキストですが、向きが異なります。これらは画像のグリッドです。私はちょうどレイアウトを再開しています。どうすればこれを処理できますか? ありがとう
<?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"
。テキストビューの幅がイメージビューの幅に収まることを示すためだけです。テキストは画像の上部にオーバーレイする必要があります。Universal-Image-Loader を使用していますが、バックグラウンドでダウンロードしているため、画像サイズを取得するのが難しいと思います。