gpt4 book ai didi

java - 布局到右侧 : String types not allowed

转载 作者:行者123 更新时间:2023-12-01 22:38:55 25 4
gpt4 key购买 nike

我有以下控件:ListView 和两个 TextView 在一行内。

我试图让“rowTextView”位于左侧,“rowTextCount”位于右侧。

这是我的行 xml:

<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="#000000"
tools:context="com.k.l.MainActivity" >

<com.k.l.MyTextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/rowTextView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="5dp"
android:textColor="#888"
android:textSize="28sp" >
</com.k.l.MyTextView>

<com.k.l.MyTextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/rowTextCount"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="5dp"
android:textColor="#888"
android:layout_toRightOf="rowTextView"
android:text="666"
android:textSize="28sp" >
</com.k.l.MyTextView>

</RelativeLayout>

错误:不允许使用字符串类型(在“layout_toRightOf”处,值为“rowTextView”)

谢谢!

最佳答案

它正在等待id。将其更改为:

  android:layout_toRightOf="@id/rowTextView"

Here你可以找到文档

关于java - 布局到右侧 : String types not allowed,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26484004/

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