Android 布局参数:wrap_content 与 match_content

2022/9/9 23:24:55

本文主要是介绍Android 布局参数:wrap_content 与 match_content,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

wrap_content

wrap_content指示您的视图将其大小调整为内容所需的尺寸。

<EditText
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:background="@color/purple_200"
  android:hint="请输入内容" />

EditText 控件高度和宽度随着字节的内容而变化。

image

match_parent

match_parent指示您的视图尽可能采用其父视图组所允许的最大尺寸。

<EditText
  android:layout_width="wrap_content"
  android:layout_height="match_parent"
  android:background="@color/purple_200"
  android:hint="请输入内容" />

EditText 控件高度和宽度随父视图而变化。

image



这篇关于Android 布局参数:wrap_content 与 match_content的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程