我正在尝试用4张大小相同的图片填充相对布局。为此,我尝试获取布局的大小,然后通过将布局大小除以4来调整图像的大小。但是,我无法正确获取布局的大小;它始终返回0(高度和宽度)。这是我到目前为止的内容:
@Override
protected void onResume() {
super.onResume();
mainLayout = (RelativeLayout) findViewById(R.id.mainLayout);
layoutHeight = mainLayout.getMeasuredHeight();
layoutWidth = mainLayout.getMeasuredWidth();
Log.d("Layout dimensions", layoutHeight + " " + layoutWidth);
}
据我了解,onResume()将在onCreate()之后运行吗?我本来在onCreate()中有这部分代码,但在这里没有用,但在onResume()中也没有用。
我也尝试过换行
layoutHeight = mainLayout.getMeasuredHeight();
layoutWidth = mainLayout.getMeasuredWidth();
到
layoutHeight = mainLayout.getHeight();
layoutWidth = mainLayout.getWidth();
但是那也不起作用。
这是我的XML,以防万一有人想看看
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
android:id="@+id/mainLayout"
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"
tools:context=".MainActivity">
<ImageView
android:id="@+id/bronzeView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:src="@drawable/bronze" />
<ImageView
android:id="@+id/silverView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_alignParentRight="true"
android:src="@drawable/silver" />
<ImageView
android:id="@+id/goldView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentBottom="true"
android:src="@drawable/gold" />
<!--<ImageView-->
<!--android:id="@+id/roseGoldView"-->
<!--android:layout_width="76dp"-->
<!--android:layout_height="137dp"-->
<!--app:srcCompat="@drawable/rosegold_small"-->
<!--tools:layout_editor_absoluteX="336dp"-->
<!--tools:layout_editor_absoluteY="557dp" />-->
<ImageView
android:id="@+id/platinumView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentBottom="true"
android:layout_marginRight="0dp"
android:layout_marginBottom="0dp"
android:src="@drawable/platinum" />
</RelativeLayout>
该如何解决?
谢谢。
答案 0 :(得分:0)
使用此-
mainLayout.post(new Runnable(){
layoutHeight = mainLayout.getMeasuredHeight();
layoutWidth = mainLayout.getMeasuredWidth();
}
答案 1 :(得分:0)
我正在尝试用4张大小相同的图片填充相对布局。为此,我尝试获取布局的大小,然后通过将布局大小除以4来调整图像的大小。
您是否考虑过使用ConstraintLayout
而不是RelativeLayout
?然后,您可以使用XML完成所有这些操作,而不必执行任何代码。
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
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:id="@+id/image1"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toTopOf="@+id/image3"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toStartOf="@+id/image2"/>
<ImageView
android:id="@+id/image2"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toTopOf="@+id/image4"
app:layout_constraintStart_toEndOf="@+id/image1"
app:layout_constraintEnd_toEndOf="parent"/>
<ImageView
android:id="@+id/image3"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintTop_toBottomOf="@+id/image1"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toStartOf="@+id/image4"/>
<ImageView
android:id="@+id/image4"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintTop_toBottomOf="@+id/image2"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toEndOf="@+id/image3"
app:layout_constraintEnd_toEndOf="parent"/>
</android.support.constraint.ConstraintLayout>