首页 > 其他分享 >Android布局基础知识

Android布局基础知识

时间:2023-02-26 21:12:57浏览次数:41  
标签:layout 布局 height content width wrap Android 基础知识 android

wrap_content:是layout_width和layout_height的属性值之一,表示和自身内容一样的长度。

match_parent:是layout_width和layout_height的属性值之一,表示和父组件一样的长度。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"//垂直
xmlns:android="http://schemas.android.com/apk/res/android">
<Button
android:layout_width="wrap_content"//写的内容规定大小
android:layout_height="wrap_content"//写的内容规定大小
android:text="大小" />

<Button
        android:text="大小大小"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<Button
android:text="大小大小"
android:layout_width="match_parent" //父类大小
android:layout_height="wrap_content"/>
    <Button
android:text="大小大小"
android:layout_width="match_parent"//父类大小
android:layout_height="match_parent"//父类大小
/>
</LinearLayout>

 

标签:layout,布局,height,content,width,wrap,Android,基础知识,android
From: https://www.cnblogs.com/JIANGzihao0222/p/17157675.html

相关文章

  • Vue的基础知识(三)
    本章将继续和大家分享Vue的一些基础知识。话不多说,下面我们直接上代码:本文内容大部分摘自Vue的官网:https://v2.cn.vuejs.org/v2/guide/首先我们先来看一下Demo的目录结构......
  • Android开发
    Button(按钮)Button是TextView的子类,所以TextView上很多属性也可以应用到Button上!我们实际开发中对于Button的,无非是对按钮的几个状态做相应的操作,比如:按钮按下的时候用一......
  • android stdio中button的按下与松开实现图标转换
    首先在res目录下的drawable文件夹下创建select功能的.xml文件,然后下载两张图片drawable文件夹(图片名称开头不可以是数字),第二步,在.xml文件中添加如下两行代码<itemandr......
  • 今天整理一下Android studio安装时遇到的问题-心血来潮
    1:每日总结-23.2.21-lao_bing-博客园(cnblogs.com)2:Androidstudio安装教程_一纸梦的博客-CSDN博客_androidstudio3:AndroidStudio中创建项目时,activity_main.xml不......
  • Android studio-ImageView
    1:创建新项目方法:https://blog.csdn.net/cpcpcp123/article/details/1053248392:ImageView:<?xmlversion="1.0"encoding="utf-8"?><androidx.constraintlayout.widget.Cons......
  • 布局3_FrameLayout
    一:基本使用<?xmlversion="1.0"encoding="utf-8"?><FrameLayoutxmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"......
  • 学习android中遇到的问题以及解决方法
    问题:在使用button控件时发现不管是背景颜色或者图片设置之后不会改变原因:因为androidstudio在某版本之后默认所有Button都是Material类型的Button,默认使用主题色,所以想......
  • 布局2_RelativeLayout
    一常见属性: RelativeLayout(相对父容器组件)  相对对齐,没有定位,默认在左上角对齐,后面覆盖前面。android:layout_alignParentRight="true"//右边相对位置对齐 ......
  • Android Studio布局一
     一:纵向布局<?xmlversion="1.0"encoding="utf-8"?><LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_par......
  • Android Studio Button
    本次Button内容我认为比较重要首先对于Button属性来说他是TextView的子类继承于TextView但是比起TextView它增加了两个属性1.textAllCaps是否将英文字母转为大写,true......