我正在开发一个带有头像的Android应用程序(图像图标),ImageView就像这样的RelativeLayout
<ImageView
android:id="@+id/indicators"
android:layout_width="@dimen/conversation_avatar_size"
android:layout_height="@dimen/conversation_list_left_indicator_height"
android:layout_below="@id/contact_image"
android:layout_alignWithParentIfMissing="true"
android:layout_marginEnd="@dimen/smaller_def_margin"
android:layout_marginTop="@dimen/smaller_def_margin"
android:scaleType="fitCenter"
tools:src="@drawable/ic_reply"/>
但是,当我使contact_image不可见时,我无法更改此ImageView的宽度,因为指标占用的空间更少。代码如下所示
indicators.getLayoutParams().width = width;
indicatorsWidth = indicators.getWidth();
indicators.requestLayout();
在indicators.requestLayout();
之后,指标的宽度仍然保持旧的未改变为宽度。我想知道为什么会发生这种情况?我也试过indicators.setLayoutParams(layoutParams);
但仍然无效。
我确实发现了一些有趣的内容,即使indicators.getWidth()
仍然是旧值,indicators.getLayoutParams().width
现在是新宽度,ImageView大小根本不会改变。
更新:我找到了view.getWidth()
的内容,然后我使用了indicators.setLeft()
和indicators.setRight()
,这次indicators.getWidth()
也是新的宽度,但是,尺寸仍然不会改变,我检查了一下,发现indicators.getMeasuredWidth()
仍然是旧值,任何想法?
答案 0 :(得分:1)
如果android:scaleType="fitCenter"
的高度是约束因素,则您的问题可能是ImageView
。视图将调整大小以适应高度并通过调整宽度来保持纵横比。请参阅this。
计算将保持原始src宽高比的比例,但也将确保src完全适合dst。至少一个轴(X或Y)将完全适合。结果集中在dst内。
这是一个与这个概念一起玩的小应用程序。您会看到即使宽度发生变化,高度也不会与android:scaleType="fitCenter"
一致。如果您将其更改为android:scaleType="fitXY"
,您会看到更改。这可能不是您的问题,但您可以使用此MCVE代码来测试一些想法。
<强> MainActivity.java 强>
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
final ImageView indicators = findViewById(R.id.indicators);
indicators.postDelayed(new Runnable() {
@Override
public void run() {
indicators.getLayoutParams().width = 500;
indicators.requestLayout();
}
}, 2000);
}
}
<强> activity_main.xml中强>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/parent"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageView
android:id="@+id/indicators"
android:layout_width="100px"
android:layout_height="100px"
android:layout_alignWithParentIfMissing="true"
android:scaleType="fitCenter"
android:src="@mipmap/ic_launcher"/>
</RelativeLayout>
答案 1 :(得分:0)
修改LayoutParams
时,您必须将对象重新分配给视图,否则将无效。
ViewGroup.LayoutParams params = myView.getLayoutParams();
params.width = newWidth;
myView.setLayoutParams(params);
最后一行实际上改变了视图的宽度。