我需要将图像视图的顶部对齐到活动的中心。
如果我在android studio中单击并拖动它,我可以轻松地将图像视图的中心链接到活动的中心。但我需要顶部如果图像视图和活动的中心链接。
如何以编程方式执行此操作?我无法设置100dp的余量(例如),因为它不适用于不同的屏幕尺寸。
答案 0 :(得分:1)
我不知道我究竟是什么意思。
我认为您希望将活动布局分为两部分,使用从屏幕中间开始的Imageview。
在这种情况下,您可以轻松使用PercentRelativeLayout
,此处为代码:
的build.gradle
dependencies {
compile 'com.android.support:percent:22.2.0'
}
layout.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.percent.PercentRelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:src="@color/colorAccent"
app:layout_paddingTop="50%"
app:layout_heightPercent="50%"
app:layout_widthPercent="100%"
/>
<ImageView
android:src="@color/colorPrimary"
app:layout_marginTopPercent="50%"
app:layout_heightPercent="50%"
app:layout_widthPercent="100%"
/>
</android.support.percent.PercentRelativeLayout>
结果:
P.S:如果您愿意,可以使用布局重量并获得相同的结果!