为什么我的方形视图无法在横向模式下工作?
它有以下onMeasure
方法:
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int width = MeasureSpec.getSize(widthMeasureSpec);
int height = MeasureSpec.getSize(heightMeasureSpec);
size = Math.min(width, height);
setMeasuredDimension(size, size);
}
在这里,您可以看到我的视图背景(灰色),并且我的视图不是正方形。为什么呢?
这是我的xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
android:orientation="vertical"
android:padding="@dimen/md_dialog_frame_margin">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="center_horizontal">
<com.my.package.GridPreviewView
android:id="@+id/grid"
android:background="#cccccc"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/npCols"
android:layout_alignParentTop="true"
android:layout_marginBottom="8dp"
android:layout_marginLeft="8dp"
android:layout_toRightOf="@+id/npRows" />
<com.shawnlin.numberpicker.NumberPicker
android:id="@+id/npRows"
android:layout_width="48dp"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/grid"
android:layout_alignTop="@+id/grid"
android:paddingRight="8dp"
app:np_dividerColor="?attr/colorAccent"
app:np_orientation="vertical"
app:np_selectedTextColor="?attr/colorAccent"
app:np_selectedTextSize="22sp"
app:np_textSize="18sp"
app:np_width="48dp" />
<com.shawnlin.numberpicker.NumberPicker
android:id="@+id/npCols"
android:layout_width="wrap_content"
android:layout_height="48dp"
android:layout_alignLeft="@+id/grid"
android:layout_alignParentBottom="true"
android:layout_alignRight="@+id/grid"
android:paddingTop="8dp"
app:np_dividerColor="?attr/colorAccent"
app:np_height="48dp"
app:np_orientation="horizontal"
app:np_selectedTextColor="?attr/colorAccent"
app:np_selectedTextSize="22sp"
app:np_textSize="18sp" />
</RelativeLayout>
</LinearLayout>
答案 0 :(得分:0)
我不确定您使用的onMeasure()
技术可能会出现什么问题,但请查看{{3>}, Android库,它提供了不同的包装类布局,渲染它们的尺寸,不会丢失任何核心功能。
尺寸是在渲染布局之前计算的,因此一旦获得视图,就不会重新渲染或进行任何调整。这将适用于所有场景(包括查看方向更改)
要使用库,请将其添加到build.gradle:
repositories {
maven {
url "https://maven.google.com"
}
}
dependencies {
compile 'com.github.kaushikthedeveloper:squarelayout:0.0.3'
}
注意:XML预览暂时可能会被破坏,但在运行应用程序时它可以正常运行。