gpt4 book ai didi

android - layout_toRightOf 有效而 layout_toLeftOf 无效,如何解决?

转载 作者:太空狗 更新时间:2023-10-29 16:08:12 26 4
gpt4 key购买 nike

我有一个简单的相对布局 - 一个 ImageView (iv1) 和一个位于 iv1 左侧的 TextView (tv1)。不幸的是,我看不到 tv1。更何况,hierarchyViewer 也帮不了我。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="right"
android:background="@android:color/white"
>

<ImageView
android:id="@+id/iv1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher" />

<TextView
android:id="@+id/tv1"
android:layout_toLeftOf="@+id/iv1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView" />

</RelativeLayout>

看起来像这样:

enter image description here

但是,如果我将 android:layout_toLeftOf="@+id/iv1"更改为 android:layout_toRightOf="@+id/iv1",我的 TextView 将位于 ImageView 的右侧。似乎 toRightOf 有效而 toLeftOf 无效。这是它的样子:

enter image description here

怎么了?如何使 layout_toLeftOf 起作用?

最佳答案

改变:

<TextView
android:id="@+id/tv1"
android:layout_toLeftOf="@+id/+iv1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView" />

到:

<TextView
android:id="@+id/tv1"
android:layout_toLeftOf="@id/iv1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView" />

您在 TextView 的 toLeftOf 中使用 @+id/iv1 而不是 @id/iv1。您还应该在 View 中为 imageview 指定一个特定位置。尝试对齐它:layout_parentTop = true

关于android - layout_toRightOf 有效而 layout_toLeftOf 无效,如何解决?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9207969/

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