gpt4 book ai didi

android - 如何跨设备将 TextView 放置在 ImageView 的同一位置?

转载 作者:行者123 更新时间:2023-12-04 15:21:27 24 4
gpt4 key购买 nike

我有一个 ImageView,我需要在 ImageView 的特定位置上放置一个 TextView,就像这张图 enter image description here

我已经设法做到这一点,有点使用以下 xml:

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">

<ImageView
android:id="@+id/background"

android:adjustViewBounds="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="centerInside"
android:src="@drawable/imageBg"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<TextView
android:layout_width="wrap_content"

android:layout_height="wrap_content"
android:text="Test text"

android:textColor="#ff0000"

android:layout_marginRight="200dp"
android:layout_marginTop="205dp"


app:layout_constraintLeft_toLeftOf="@id/background"
app:layout_constraintRight_toRightOf="@id/background"
app:layout_constraintTop_toTopOf="@id/background" />

</androidx.constraintlayout.widget.ConstraintLayout>

这在我的一个模拟器测试设备上运行良好,但正如我在其他模拟器设备上尝试时所预期的那样,由于固定边距 dp 值,它不能很好地跨多个运行不同分辨率等的设备进行扩展。

我怎样才能以最好的方式实现这一点,这种方式可以跨多个设备工作,而且现在 TextView 每次都在同一个位置?我知道我可以使用 dimens.xml 并为不同的设备尺寸使用不同的边距值,但我认为这不是最好的方法。

最佳答案

我知道我可以使用 dimens.xml 并为不同的设备尺寸使用不同的边距值,但我认为这不是最好的方法。

你是对的,你可以使用这样的指南来确保你的布局在不同的屏幕上看起来是一样的:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">

<ImageView
android:id="@+id/imageView2"
android:layout_width="0dp"
android:layout_height="0dp"
android:scaleType="fitXY"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHeight_percent="0.4"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintWidth_percent="0.8"
tools:srcCompat="@tools:sample/backgrounds/scenic" />

<androidx.constraintlayout.widget.Guideline
android:id="@+id/guideline2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
app:layout_constraintGuide_percent="0.5"/>


<androidx.constraintlayout.widget.Guideline
android:id="@+id/guideline3"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintGuide_percent="0.45"/>

<TextView
android:id="@+id/textView7"
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@color/colorAccent"
app:layout_constraintHeight_percent="0.1"
app:layout_constraintWidth_percent="0.2"
android:text="TextView"
app:layout_constraintBottom_toTopOf="@+id/guideline2"
app:layout_constraintEnd_toStartOf="@+id/guideline3" />

</androidx.constraintlayout.widget.ConstraintLayout>

它看起来像这样(黑色箭头是指南):

enter image description here

现在您只有一种布局,但它是一种响应式布局 - 您无需为不同的设备创建更多布局。


请注意,我的 View 没有任何固定大小,我使用百分比创建了一个完全响应式布局,有关该主题的更多信息,您可以查看 my answer .

关于android - 如何跨设备将 TextView 放置在 ImageView 的同一位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63200373/

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