gpt4 book ai didi

android - 在 TextView 中添加多个图像

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

Enter image description here

我想做一个类似上图的东西,但是我没能实现!

add_expenses

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">

<TextView
android:layout_width="320dp"
android:layout_height="50dp"
android:layout_marginTop="20dp"
android:text="Receipt"
android:drawableTint="@color/blue"
android:drawablePadding="15dp"
android:paddingTop="18dp"
android:paddingLeft="15dp"
android:drawableLeft="@drawable/receipt"
android:drawableRight="@drawable/arrow"
android:layout_marginLeft="10dp"
android:textSize="23sp"
android:textColor="@color/black"
android:id="@+id/NoData"
android:background="@drawable/roundedcorner_textview" />

</RelativeLayout>

roundedcorner_textview

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<stroke
android:width="3dp"
android:color="@color/light_purple"/>
<corners android:radius="3dp"/>

</shape>

我的输出

Enter image description here

  1. 如何把图片做大?
  2. 我希望箭头的颜色是黑色,而不是蓝色。

实现此目标的最佳方法是什么?

最佳答案

尝试添加这段代码

  <LinearLayout
android:layout_width="match_parent"
android:layout_height="40dp"
android:orientation="horizontal"
android:background="@drawable/roundedcorner_textview"
android:weightSum="1">

<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="0.9"
android:scaleType="centerInside"
android:tint="@color/colorPrimary"
android:src="@drawable/ic_receipt_white" />

<LinearLayout
android:id="@+id/li_about"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="0.1"
android:orientation="horizontal"
android:paddingLeft="@dimen/activity_vertical_margin"
android:paddingTop="5dp"
android:weightSum="1">

<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="0.1"
android:text="Receipt"
android:textSize="17sp" />

<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="0.9"
android:src="@drawable/forwardbutton"
/>
</LinearLayout>
</LinearLayout>

关于android - 在 TextView 中添加多个图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41161041/

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