gpt4 book ai didi

android - 如何在一个 LinearLayout 内的多个图像上设置文本?

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

我想在图像上放置一些文字。有人可以帮我解决这个问题吗?

我有六个矩形框,我想在每个框上放一些文本。我使用 ImageView 来制作矩形。

请找到下面的ma​​inactivity.xml代码:

  <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffffff"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context="com.example.vimal.edkul.StudentProfile">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/layout1">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/title">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="left"
android:src="@drawable/pic13" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="User Profile"
android:textSize="20sp"
android:textColor="@android:color/white" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:src="@drawable/ic_action_overflow" />
</android.support.v7.widget.Toolbar>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/layout2"
android:layout_gravity="center"
android:layout_below="@+id/layout1"
android:padding="30dp">
<FrameLayout
android:layout_height="100dp"
android:layout_width="130dp">
<View
android:background="@drawable/rectangle"
android:clickable="false"
android:id="@+id/view1"
android:layout_height="match_parent"
android:layout_width="match_parent" />
<TextView
android:gravity="center"
android:id="@+id/text1"
android:textColor="#000"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:text="Some text" />
</FrameLayout>
<FrameLayout
android:layout_height="100dp"
android:layout_width="130dp">
<View
android:background="@drawable/rectangle"
android:clickable="false"
android:id="@+id/view2"
android:layout_height="match_parent"
android:layout_width="match_parent" />
<TextView
android:gravity="center"
android:id="@+id/text2"
android:textColor="#000"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:text="Some text" />
</FrameLayout>
</LinearLayout>
</RelativeLayout>

矩形.xml

    <?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<solid android:color="@android:color/transparent"/>
<corners android:radius="12px"/>
<stroke android:width="2dip" android:color="#000000"/>
</shape>

最佳答案

您可以使用布局的以下部分代替每个 ImageView:

<FrameLayout
android:layout_height="150dp"
android:layout_width="100dp" >

<View
android:background="@drawable/rectangle"
android:clickable="false"
android:id="@+id/buttonVote"
android:layout_height="match_parent"
android:layout_width="match_parent" />

<TextView
android:gravity="center"
android:id="@+id/textStatusMessage"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:text="Some text" />

</FrameLayout>

编辑

您可以在 rectangle.xml 中更改背景。例如:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@android:color/darker_gray" />
<corners android:radius="12px" />
<stroke
android:width="2dip"
android:color="#000000" />
</shape>

那个 xml looks that对我来说。

您甚至可以删除 FrameLayoutView 并为 TextView 设置背景:

<TextView
android:id="@+id/text1"
android:layout_width="150dp"
android:layout_height="100dp"
android:gravity="center"
android:text="Some text"
android:textColor="#000"
android:background="@drawable/rectangle"/>

附言要显示您不需要使用 ImageView 的简单图像,带有背景的简单 View 就足够了。

关于android - 如何在一个 LinearLayout 内的多个图像上设置文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36370685/

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