布局文件 - 将项目定位到另一个项目的右侧 (Android)
我试图将相对布局中的一个项目定位到另一个项目的右侧。在下面的示例中,我希望将“,”放置在描述字段的右侧。然而问题是它将逗号放在名称字段旁边的第一行。有人可以帮忙吗?
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal"
android:padding="10sp">
<TextView
android:id="@+id/name"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/description"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/name" />
<TextView
android:id="@+id/descriptioncomma"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=", "
android:layout_toRightOf="@id/description" />
I'm trying to position one item in a RelativeLayout to the right of another. In the example below I want the "," to be placed to the right of the description field. However the problem is it puts the comma on the first line next to the name field. Can anyone help?
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal"
android:padding="10sp">
<TextView
android:id="@+id/name"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/description"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/name" />
<TextView
android:id="@+id/descriptioncomma"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=", "
android:layout_toRightOf="@id/description" />
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试这个代码,它应该可以工作:
按钮使用了layout_toRightOf属性和Textview小部件的id。
在 Both TextView 中添加文本然后检查它。
好的
Try this code, it should work:
Button used layout_toRightOf attribute with id of Textview widget.
In Both TextView you add text and than check it.
OK
用这个
use this one
这里它会帮助完整:按钮使用了layout_toRightOf属性和Textview小部件的id。
在这里您可以找到线性布局定位的完整示例
Here it will help full : Button used layout_toRightOf attribute with id of Textview widget.
Here you can find Complete examples of linear layout positioning