gpt4 book ai didi

android - 如何在图像上显示文字?

转载 作者:行者123 更新时间:2023-11-29 17:16:07 25 4
gpt4 key购买 nike

我必须将两行文本显示为附加图像。

enter image description here

在这张图片中,我必须显示文字“Hotel Seawoods, Mahalaxmi20% 现金返还”。

请告诉我该怎么做?

activity_home.xml

  <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/tools"
android:orientation="vertical">
<include
layout="@layout/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<ImageView
android:id="@+id/test_image"
android:layout_width="match_parent"
android:layout_height="240dp"
android:scaleType="fitXY"
android:src="@drawable/test" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="#000"
android:textSize="40dp"
android:text="Neeraj" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Shah"
android:layout_gravity="bottom"
android:gravity="right"
android:textColor="#"
android:textSize="50dp" />


</FrameLayout>
<android.support.v7.widget.CardView
android:id="@+id/card_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_margin="10dp"
card_view:cardBackgroundColor="@color/cardview_1_background"
android:elevation="3dp"
card_view:cardCornerRadius="4dp">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="10dp">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:orientation="horizontal">

<ImageView
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@drawable/ic_eye"
android:paddingLeft="10dp"/>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:text="Explore"
android:textStyle="bold" />
</LinearLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:orientation="horizontal"
android:weightSum="1">

<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight=".25"
android:gravity="center"
android:orientation="vertical">

<ImageView
android:layout_width="64dp"
android:layout_height="64dp"
android:src="@drawable/location"
/>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="Location"
android:textStyle="bold" />
</LinearLayout>

<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight=".25"
android:gravity="center"
android:orientation="vertical">

<ImageView
android:layout_width="64dp"
android:layout_height="64dp"
android:src="@drawable/deals"
/>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="Deals"
android:textStyle="bold" />
</LinearLayout>

<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight=".25"
android:gravity="center"
android:orientation="vertical">

<ImageView
android:layout_width="64dp"
android:layout_height="64dp"
android:src="@drawable/cuisine"
/>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="Cusine"
android:textStyle="bold" />
</LinearLayout>

<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight=".25"
android:gravity="center"
android:orientation="vertical">

<ImageView
android:layout_width="64dp"
android:layout_height="64dp"
android:src="@drawable/drive"
/>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="Drive-in"
android:textStyle="bold" />
</LinearLayout>
</LinearLayout>
</LinearLayout>

</android.support.v7.widget.CardView>


<android.support.v7.widget.CardView
android:id="@+id/card_view1"
android:layout_width="match_parent"
android:layout_height="30dp"
android:layout_gravity="center"
android:layout_margin="10dp"
card_view:cardBackgroundColor="@color/cardview_1_background"
android:elevation="3dp"
card_view:cardCornerRadius="4dp">


<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:orientation="horizontal">

<ImageView
android:layout_width="25dp"
android:layout_height="25dp"
android:src="@drawable/recent"
android:paddingLeft="10dp"/>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:text="Recents"
android:textStyle="bold" />
</RelativeLayout>

</android.support.v7.widget.CardView>

</LinearLayout>

注意:在这个 xml "test_image"(test) 是图像,我必须在其中显示文本。

我在更改后现在正在获取,而我正在获取较早的 cardview enter image description here

最佳答案

使用框架布局

<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageView
android:id="@+id/ImageView01"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:src="@drawable/lake"
android:scaleType="matrix"></ImageView>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="#000"
android:textSize="40dp"
android:text="@string/top_text" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/bottom_text"
android:layout_gravity="bottom"
android:gravity="right"
android:textColor="#fff"
android:textSize="50dp" />
</FrameLayout>

更多信息见 this article .

关于android - 如何在图像上显示文字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38888125/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com