我正在实现一个自定义视图,我希望能够在运行时更改它的大小。
简化问题:我需要在这个视图中显示一个位图,但由于它经常刷新,我想扩展 SurfaceView。
问题是我失去了 ImageView 的自动调整大小功能。
所以我想声明一个方法 setCustomBitmap(Bitmap bmp) 并根据该位图的宽度和高度(保持纵横比)调整视图尺寸(当前或下一次显示视图)。
我应该使用什么方法?我想 setWidth() 和 setHeight() 不是最好的主意
我正在实现一个自定义视图,我希望能够在运行时更改它的大小。
简化问题:我需要在这个视图中显示一个位图,但由于它经常刷新,我想扩展 SurfaceView。
问题是我失去了 ImageView 的自动调整大小功能。
所以我想声明一个方法 setCustomBitmap(Bitmap bmp) 并根据该位图的宽度和高度(保持纵横比)调整视图尺寸(当前或下一次显示视图)。
我应该使用什么方法?我想 setWidth() 和 setHeight() 不是最好的主意
由于您正在扩展 SurfaceView,因此您可能能够覆盖该onMeasure()
方法。传递给超类(通过super.onMeasure()
)的 MeasureSpec 实例将确定 SurfaceView 的大小。您可以使用位图的尺寸来制作每个 MeasureSpec。
例如:
protected void onMeasure( int widthMeasureSpec, int heightMeasureSpec ) {
int parentViewWidth = MeasureSpec.getSize( widthMeasureSpec );
int parentViewHeight = MeasureSpec.getSize( heightMeasureSpec );
// ... take into account the parent's size as needed ...
super.onMeasure(
MeasureSpec.makeMeasureSpec( bitmap.width(), MeasureSpec.EXACTLY ),
MeasureSpec.makeMeasureSpec( bitmap.height(), MeasureSpec.EXACTLY ) );
}