> ImageVIEw的宽度是其父级宽度的一定百分比(现在的屏幕宽度).
> ImageVIEw在屏幕内水平居中.
我使用XML布局创建了一个测试用例,但实际上我将以编程方式创建这些布局和视图;我认为这不是为了找出正确的布局.
我对Android布局中的权重以及它们通常用于如何使用相对加权因子布局多个视图有些熟悉.为了满足条件1,我创建了一个容器linearLayout(水平方向),设置它的weightSum = 1,然后使用我想要的任何百分比的权重嵌入我的ImageVIEw,比如说0.5.这有效!
接下来,我希望ImageVIEw最终在屏幕上水平居中.所以我将引力设置为“center”/“centerHorizontal”.这是我被卡住的地方,因为无论我选择什么引力/布局重力设置,它似乎始终与左侧对齐.
布局文件:
<linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:orIEntation="vertical" androID:layout_wIDth="fill_parent" androID:layout_height="fill_parent" androID:background="#FFFFFF"> <linearLayout androID:orIEntation="horizontal" androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:weightSum="1.0"> <ImageVIEw androID:src="@drawable/earth" androID:adjustVIEwBounds="true" androID:layout_wIDth="0" androID:layout_height="wrap_content" androID:layout_weight="0.5" androID:layout_gravity="center_horizontal" androID:ID="@+ID/imageVIEw1" /> </linearLayout></linearLayout>
结果:
我真正想要实现的是这样的:
但为了实现这一点,我不得不在我的ImageVIEw的两侧插入两个权重为0.25的虚拟linearLayouts,如下所示:
<linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:orIEntation="vertical" androID:layout_wIDth="fill_parent" androID:layout_height="fill_parent" androID:background="#FFFFFF"> <linearLayout androID:orIEntation="horizontal" androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:weightSum="1.0"> <linearLayout androID:orIEntation="horizontal" androID:layout_wIDth="0" androID:layout_height="wrap_content" androID:layout_weight="0.25"/> <ImageVIEw androID:src="@drawable/earth" androID:adjustVIEwBounds="true" androID:layout_wIDth="0" androID:layout_height="wrap_content" androID:layout_weight="0.5" androID:layout_gravity="center_horizontal" androID:ID="@+ID/imageVIEw1" /> <linearLayout androID:orIEntation="horizontal" androID:layout_wIDth="0" androID:layout_height="wrap_content" androID:layout_weight="0.25"/> </linearLayout></linearLayout>
在我看来,这是一个丑陋且笨拙的布局,不仅因为我现在不得不使用除了我的顶级linearLayout之外的3个额外的linearLayout来调整视图的大小和位置,还因为我想以编程方式执行所有布局并动态地.我可能决定在运行时左右对齐我的视图,或者相对于屏幕宽度更改其缩放系数,在此解决方案中需要可能添加/删除虚拟布局视图并适当设置所有权重.
我希望有人在布局上比我有更好的解决方案!理想情况下,我可以设置“重力”(虽然我无法使其工作),或者设置宽度而不需要水平linearLayout容器和重量的一些替代方法,因为没有那个容器我可以居中在我的顶级垂直linearLayout中水平放置.
谢谢!
编辑:我刚刚意识到在我的第二次布局尝试使用虚拟填充linearLayouts我可以取消第二个填充linearLayout(设置为0.25的重量)并在我的ImageVIEw之前使用一个虚拟填充linearLayout,因为它们是相对于预定的父母的weightSum.例如.:
<linearLayout androID:orIEntation="horizontal" androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:weightSum="1.0"> <linearLayout androID:orIEntation="horizontal" androID:layout_wIDth="0" androID:layout_height="wrap_content" androID:layout_weight="0.25"/> <ImageVIEw androID:src="@drawable/earth" androID:adjustVIEwBounds="true" androID:layout_wIDth="0" androID:layout_height="wrap_content" androID:layout_weight="0.5" androID:layout_gravity="center_horizontal" androID:ID="@+ID/imageVIEw1" /> </linearLayout>
仍然不是我希望的理想解决方案.
解决方法 你可以添加androID:gravity =“center”到你的线性布局(不在imageVIEw中)我希望它有所帮助.
总结以上是内存溢出为你收集整理的Android ImageView按重量调整大小,不以父LinearLayout为中心全部内容,希望文章能够帮你解决Android ImageView按重量调整大小,不以父LinearLayout为中心所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)