gpt4 book ai didi

android - 对齐相对布局内的复选框

转载 作者:太空宇宙 更新时间:2023-11-03 11:22:04 24 4
gpt4 key购买 nike

我有 gridview,我在网格中加载了一个图像,还有一个复选框来选择该图像。我使用 .9 图像作为背景来显示每个图像的边框。图像和复选框位于相对布局内。现在我已经尝试了所有方法,但复选框不会与边框对齐。边框和复选框总是有空格。这是为每个图像加载到网格中的 View

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/imageLayout"
android:gravity="top" android:layout_width="fill_parent" android:layout_height="fill_parent">
<ImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/back"
android:layout_gravity="center">
</ImageView>

<CheckBox
android:id="@+id/checkbox"
android:button="@xml/checkbox"
android:background="@xml/checkbox_background"
android:layout_alignRight="@id/imageLayout"
android:layout_alignParentRight="true" android:layout_height="wrap_content" android:layout_width="wrap_content" >

</CheckBox>
</RelativeLayout>

有什么办法吗?附上屏幕截图

编辑:我使用的背景图片设置为 imageview 背景

最佳答案

替换

android:layout_alignRight="@id/imageLayout" 

android:layout_alignRight="@id/image"

我认为您在这里犯了一个错误,因为 CheckBox 不能与其父相对布局的右侧对齐。

关于android - 对齐相对布局内的复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6504720/

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