将屏幕分成两半并将图像视图放在两半的两半上
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将屏幕分成两半并将图像视图放在两半的两半上相关的知识,希望对你有一定的参考价值。
我正在设计一个页面,但此时陷入困境。如果有人知道请告诉。我想这样做:
放置像圆形方形的鸟一样的图像。
答案
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.testing.MainActivity" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="0dp"
android:background="#0000ff"
android:orientation="vertical"
android:layout_weight="1" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="0dp"
android:background="#00ffff"
android:orientation="vertical"
android:layout_weight="1" />
</LinearLayout>
<LinearLayout
android:layout_width="100dp"
android:layout_height="100dp"
android:orientation="vertical"
android:background="#00ff00"
android:layout_gravity="center" />
</FrameLayout>
另一答案
自从我2年前发布这篇文章以来,我看不出任何有用的答案,我自己也在回答。
它可以通过使用CoordinatorLayout
与layout_anchor
在layout_anchorGravity
完成,我们可以将View
锚定到另一个View
。这很简单,因为它是CoordinatorLayout
的内置行为。
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".MyActivity">
<ImageView
android:id="@+id/header"
android:layout_width="match_parent"
android:layout_height="180dp"
android:adjustViewBounds="true"
android:scaleType="centerCrop"
android:src="@drawable/img_banner" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/ic_logo"
app:layout_anchor="@id/header"
app:layout_anchorGravity="bottom|center_horizontal" />
</android.support.design.widget.CoordinatorLayout>
另一答案
你可以在这里找到解决方案:
https://stackoverflow.com/a/25143739/5907003
如果你想要calculate the height dynamically,你可以使用下面的代码:
int finalHeight, finalWidth;
final ImageView iv = (ImageView)findViewById(R.id.scaled_image);
final TextView tv = (TextView)findViewById(R.id.size_label);
ViewTreeObserver vto = iv.getViewTreeObserver();
vto.addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener() {
public boolean onPreDraw() {
iv.getViewTreeObserver().removeOnPreDrawListener(this);
finalHeight = iv.getMeasuredHeight();
finalWidth = iv.getMeasuredWidth();
tv.setText("Height: " + finalHeight + " Width: " + finalWidth);
return true;
}
});
还有一个想法,如果这可以帮助,您可以将图像分为两个部分,并将它们与您的布局对齐为对齐底部和顶部对齐相应的布局
对于圆角背景,您可以在drawable文件夹中创建bg.xml
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#FFFFFF"/>
<stroke android:width="3dip" android:color="#B1BCBE" />
<corners android:radius="10dip"/>
<padding android:left="0dip" android:top="0dip" android:right="0dip" android:bottom="0dip" />
</shape>
祝好运!
以上是关于将屏幕分成两半并将图像视图放在两半的两半上的主要内容,如果未能解决你的问题,请参考以下文章