0

最近、テキスト付きの画像を含むアプリを見ました。

アプリを使用したかどうかImageViewTextView?テキストはどのように画像をオーバーレイしますか?それはどのように行われたのですか?

スクリーンショットを添付しました。

ここに画像の説明を入力してください

4

3 に答える 3

2

レイアウトのTextViewに属性android:background = "#00000000"を設定します。XMLファイル。

<FrameLayout 
android:layout_height="wrap_content"
android:layout_width="match_parent"
>

<ImageView
android:src="@drawable/your_image"
android:layout_height="match_parent"
android:layout_width="match_parent"

/>

<TextView
android:height="match_parent"
android:width="match_parent"
android:background="#00000000" 
android:gravity="bottom"
/>

</FrameLayout>
于 2013-01-10T06:13:16.993 に答える
1

FrameLayoutを使用してTextViewをImageViewに配置するか、次のように、画像として背景リソースを使用してテキストビューを取得することができます。

 <TextView
                            android:layout_gravity="center"
                            android:background="@drawable/custom_buttonclick"
                            android:gravity="center"
                            android:textSize="12dp"
                            android:textStyle="bold" />
于 2013-01-10T06:37:18.573 に答える
0

相対レイアウト、ImageView、およびTextViewを使用することにより、textViewの背景色を透明にすることができます。

于 2013-01-10T06:14:40.143 に答える