私はあなたが何を意味するかを正確に理解しているかどうかわかりません。
私はあなたの画面の中央から始まるImageviewを使って2つの部分にあなたの活動レイアウトを分割したいと思う。
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>
結果:
私はそのような場合、あなたは簡単に
PercentRelativeLayout
、ここにコードを使用することができます
P.S:レイアウトウェイトで遊んで同じ結果を得ることができます。
空のビューをRelativeLayoutの中央に配置し、その空のビューの上に揃えることができます –