Android的RelativeLayout子级向左和向右
我正在尝试创建一个布局,其中有一个relativelayout和两个子元素。两个子视图是 TextView 和 ImageView。我希望文本从RelativeLayout 和ImageView 的最左边开始到RelativeLayout 的最右边。
我需要使用哪些属性?
该代码不起作用。
<RelativeLayout
android:clickable="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/android_btn_large"
android:gravity="center_vertical">
<TextView
android:id="@+id/txtButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Riverside Park"
android:textColor="#FFFFFF"
android:layout_alignParentLeft="true">
</TextView>
<ImageView
android:id="@+id/imgButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:layout_alignParentRight="true"
android:src="@drawable/plus_icon_480">
</ImageView>
</RelativeLayout>
上面的方法有效,但将按钮拉伸到 fill_parent。
I am trying to create a layout where there is a RelativeLayout and two child inside it. The two children are TextView and ImageView. I want the text to start from the very left of the RelativeLayout and ImageView to very right of the RelativeLayout.
What properties I need to use?
The code is which is not working.
<RelativeLayout
android:clickable="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/android_btn_large"
android:gravity="center_vertical">
<TextView
android:id="@+id/txtButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Riverside Park"
android:textColor="#FFFFFF"
android:layout_alignParentLeft="true">
</TextView>
<ImageView
android:id="@+id/imgButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:layout_alignParentRight="true"
android:src="@drawable/plus_icon_480">
</ImageView>
</RelativeLayout>
The above works but stretch the button to fill_parent.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
应该可以完成这项工作,
请注意,在 TextView 中有 +id,而在 ImageView 中没有“+”。但是,您应该在两个视图上使用线性布局,并将权重设置为“1”。
that should do the job
notice that in TextView there is +id, and in ImageView there is no "+"". However you should use linear layout with weight set to "1" on both views.
对于左子视图 (TextView),layout_alignparentleft="true";对于右子视图 (ImageView),layout_alignparentright="true"。
layout_alignparentleft="true" for the left hand child (TextView) and layout_alignparentright="true" for the right hand child (ImageView).