最近、テキスト付きの画像を含むアプリを見ました。
アプリを使用したかどうかImageView
とTextView
?テキストはどのように画像をオーバーレイしますか?それはどのように行われたのですか?
スクリーンショットを添付しました。
最近、テキスト付きの画像を含むアプリを見ました。
アプリを使用したかどうかImageView
とTextView
?テキストはどのように画像をオーバーレイしますか?それはどのように行われたのですか?
スクリーンショットを添付しました。
レイアウトの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>
FrameLayoutを使用してTextViewをImageViewに配置するか、次のように、画像として背景リソースを使用してテキストビューを取得することができます。
<TextView
android:layout_gravity="center"
android:background="@drawable/custom_buttonclick"
android:gravity="center"
android:textSize="12dp"
android:textStyle="bold" />
相対レイアウト、ImageView、およびTextViewを使用することにより、textViewの背景色を透明にすることができます。