我有多个图像需要以特定方式对齐,第二个imageview
必须与第一个的中心对齐imageview
。怎样才能做到这一点?
我附上了一张图片供参考,
到目前为止,我正在做的是在 的中心保持一个隐藏的视图obj1
,并将其顶部对齐obj2
,但它似乎不起作用。
我有多个图像需要以特定方式对齐,第二个imageview
必须与第一个的中心对齐imageview
。怎样才能做到这一点?
我附上了一张图片供参考,
到目前为止,我正在做的是在 的中心保持一个隐藏的视图obj1
,并将其顶部对齐obj2
,但它似乎不起作用。
你为什么不直接得到paddingTop
obj3 的一半,一半是 obj1 的paddingTop
或marginTop
。
使用RelativeLayout
并设置对齐方式ImageViews
:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imageViewLeft"
android:layout_alignParentLeft="true"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imageViewRight"
android:layout_alignParentRight="true"/>
</RelativeLayout>
您可以自己尝试一下,我希望这将帮助您根据您的要求获得意见-
创建activity_main.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/rlBase"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#FFF000" >
<ImageView
android:id="@+id/imageViewRight"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:src="@drawable/ic_launcher" />
<ImageView
android:id="@+id/imageViewLeft"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:src="@drawable/ic_launcher" />
</RelativeLayout>
创建 imagemiddle.xml
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/imageViewMiddle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher" />
在主要活动中 -
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
和 -
@Override
public void onWindowFocusChanged(boolean hasFocus) {
// TODO Auto-generated method stub
super.onWindowFocusChanged(hasFocus);
if (hasFocus) {
RelativeLayout rlParent = (RelativeLayout) findViewById(R.id.rlBase);
int height = rlParent.getMeasuredHeight() / 2;
Log.d("Height:", height + "");
rlParent.getLayoutParams().height = height
+ rlParent.getMeasuredHeight();
rlParent.invalidate();// Change the height of the Relative layout programatically
// Layout params for the middle image--
RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(
LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
params.addRule(RelativeLayout.CENTER_HORIZONTAL,
RelativeLayout.TRUE);
LayoutInflater inflater = (LayoutInflater) getSystemService(LAYOUT_INFLATER_SERVICE);
ImageView ivMiddle = (ImageView) inflater.inflate(
R.layout.imagemiddle, null);
params.addRule(RelativeLayout.ALIGN_PARENT_BOTTOM,
RelativeLayout.TRUE);
ivMiddle.setLayoutParams(params);
rlParent.addView(ivMiddle, params);
}
}
这不是确切的答案;但这应该可以帮助您获得所需的输出。