当前位置:   article > 正文

用Android studio 网格布局制作计算器界面_android studio网格布局 计算器界面java程序

android studio网格布局 计算器界面java程序

(一)网格布局概述

1、布局特点
  • GridLayout布局使用虚细线将布局划分为行、列和单元格,也支持一个控件在行、列上都有交错排列。
  • 可以自己设置布局中组件的排列方式
  • 可以自定义网格布局有多少行、多少列
  • 可以直接设置组件位于某行某列
  • 可以设置组件横跨几行或者几列
2、继承关系图
  • GridLayout类是ViewGroup子类
    在这里插入图片描述
3、常用属性
(1)针对布局的属性
属性含义
rowCount行数
columnCount列数
layout_width布局宽度
layout_height布局高度
(2)针对子控件的属性
属性含义
layout_row子控件在布局的行数
layout_column子控件在布局的列数
layout_rowSpan跨行数
layout_columnSpan跨列数

(二)案例演示:计算器界面

1、创建安卓应用
  • 基于Empty Activity模板创建安卓应用 - GridLayoutCalculator
    在这里插入图片描述
  • 点击finish按钮
    在这里插入图片描述

2、准备背景图片

  • 将一张背景图片拷贝到drawable目录里
    在这里插入图片描述

3、字符串资源文件

  • 字符串资源文件 - strings.xml
    在这里插入图片描述
<resources>
    <string name="app_name">网格布局:计算器界面</string>
</resources>
  • 1
  • 2
  • 3

4、自定义边框配置文件

  • drawable目录里添加custom_border.xml
    在这里插入图片描述

在这里插入图片描述

  • 文件配置代码
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">

    <corners android:radius="5dp" />
    <stroke
        android:width="1dp"
        android:color="#555555" />

    <padding
        android:bottom="10dp"
        android:left="10dp"
        android:right="10dp"
        android:top="10dp" />

    <gradient
        android:endColor="#eeeeee"
        android:startColor="#aaaaaa" />
</shape>

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20

5、主布局资源文件

  • 主布局资源文件 - activity_main.xml
    在这里插入图片描述

  • 将默认的约束布局修改为垂直的线性布局,设置相关属性
    在这里插入图片描述

  • 添加显示运算结果的标签,并设置相关属性
    在这里插入图片描述

  • 查看预览效果
    在这里插入图片描述

  • 添加一个网格布局,设置为6行5列
    在这里插入图片描述

  • 添加第一行的五个按钮
    在这里插入图片描述

  • 查看预览效果
    在这里插入图片描述

  • 添加第二行的五个按钮
    在这里插入图片描述

  • 查看预览效果
    在这里插入图片描述

  • 添加第三行的五个按钮
    在这里插入图片描述

  • 查看预览效果
    在这里插入图片描述

  • 添加第四行的五个按钮

  • 查看预览效果
    在这里插入图片描述

  • 在第五行添加五个按钮,但是第五个按钮跨两行,高度要重新设置
    在这里插入图片描述

  • 查看预览效果
    在这里插入图片描述

  • 第六行添加三个按钮,第一个按钮跨两列,宽度要重新设置
    在这里插入图片描述

  • 查看预览效果
    在这里插入图片描述

  • 如代码有误,可查看源代码

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/background"
    android:gravity="center_horizontal"
    android:orientation="vertical"
    android:padding="15dp"
    tools:context=".MainActivity">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="30dp"
        android:background="@drawable/custom_border"
        android:gravity="right"
        android:text="0123456789"
        android:textColor="#0000ff"
        android:textSize="20sp" />

    <GridLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dp"
        android:columnCount="5"
        android:rowCount="6">

        <!--/-->

        <Button
            android:layout_width="68dp"
            android:layout_height="wrap_content"
            android:layout_row="0"
            android:layout_column="0"
            android:layout_marginRight="5dp"
            android:text="MC"
            android:textSize="15sp" />

        <Button
            android:layout_width="68dp"
            android:layout_height="wrap_content"
            android:layout_row="0"
            android:layout_column="1"
            android:layout_marginRight="5dp"
            android:text="MR"
            android:textSize="15sp" />

        <Button
            android:layout_width="68dp"
            android:layout_height="wrap_content"
            android:layout_row="0"
            android:layout_column="2"
            android:layout_marginRight="5dp"
            android:text="MS"
            android:textSize="15sp" />

        <Button
            android:layout_width="68dp"
            android:layout_height="wrap_content"
            android:layout_row="0"
            android:layout_column="3"
            android:layout_marginRight="5dp"
            android:text="M+"
            android:textSize="15sp" />

        <Button
            android:layout_width="68dp"
            android:layout_height="wrap_content"
            android:layout_row="0"
            android:layout_column="4"
            android:layout_marginRight="5dp"
            android:text="M-"
            android:textSize="15sp" />

<!--/-->

        <Button
            android:layout_width="68dp"
            android:layout_height="wrap_content"
            android:layout_row="1"
            android:layout_column="0"
            android:layout_marginRight="5dp"
            android:text="⬅"
            android:textSize="15sp" />

        <Button
            android:layout_width="68dp"
            android:layout_height="wrap_content"
            android:layout_row="1"
            android:layout_column="1"
            android:layout_marginRight="5dp"
            android:text="CE"
            android:textSize="15sp" />

        <Button
            android:layout_width="68dp"
            android:layout_height="wrap_content"
            android:layout_row="1"
            android:layout_column="2"
            android:layout_marginRight="5dp"
            android:text="C"
            android:textSize="15sp" />

        <Button
            android:layout_width="68dp"
            android:layout_height="wrap_content"
            android:layout_row="1"
            android:layout_column="3"
            android:layout_marginRight="5dp"
            android:text="±"
            android:textSize="15sp" />

        <Button
            android:layout_width="68dp"
            android:layout_height="wrap_content"
            android:layout_row="1"
            android:layout_column="4"
            android:layout_marginRight="5dp"
            android:text="✔"
            android:textSize="15sp" />

        <!--/-->

    <Button
        android:layout_width="68dp"
        android:layout_height="wrap_content"
        android:layout_row="2"
        android:layout_column="0"
        android:layout_marginRight="5dp"
        android:text="7"
        android:textSize="15sp" />

        <Button
            android:layout_width="68dp"
            android:layout_height="wrap_content"
            android:layout_row="2"
            android:layout_column="1"
            android:layout_marginRight="5dp"
            android:text="8"
            android:textSize="15sp" />

        <Button
            android:layout_width="68dp"
            android:layout_height="wrap_content"
            android:layout_row="2"
            android:layout_column="2"
            android:layout_marginRight="5dp"
            android:text="9"
            android:textSize="15sp" />

        <Button
            android:layout_width="68dp"
            android:layout_height="wrap_content"
            android:layout_row="2"
            android:layout_column="3"
            android:layout_marginRight="5dp"
            android:text="/"
            android:textSize="15sp" />

        <Button
            android:layout_width="68dp"
            android:layout_height="wrap_content"
            android:layout_row="2"
            android:layout_column="4"
            android:layout_marginRight="5dp"
            android:text="%"
            android:textSize="15sp" />

        <!--/-->

        <Button
            android:layout_width="68dp"
            android:layout_height="wrap_content"
            android:layout_row="3"
            android:layout_column="0"
            android:layout_marginRight="5dp"
            android:text="4"
            android:textSize="15sp" />

        <Button
            android:layout_width="68dp"
            android:layout_height="wrap_content"
            android:layout_row="3"
            android:layout_column="1"
            android:layout_marginRight="5dp"
            android:text="5"
            android:textSize="15sp" />

        <Button
            android:layout_width="68dp"
            android:layout_height="wrap_content"
            android:layout_row="3"
            android:layout_column="2"
            android:layout_marginRight="5dp"
            android:text="6"
            android:textSize="15sp" />

        <Button
            android:layout_width="68dp"
            android:layout_height="wrap_content"
            android:layout_row="3"
            android:layout_column="3"
            android:layout_marginRight="5dp"
            android:text="*"
            android:textSize="15sp" />

        <Button
            android:layout_width="68dp"
            android:layout_height="wrap_content"
            android:layout_row="3"
            android:layout_column="4"
            android:layout_marginRight="5dp"
            android:text="1/x"
            android:textSize="15sp" />

        <!--/-->

        <Button
            android:layout_width="68dp"
            android:layout_height="wrap_content"
            android:layout_row="4"
            android:layout_column="0"
            android:layout_marginRight="5dp"
            android:text="1"
            android:textSize="15sp" />

        <Button
            android:layout_width="68dp"
            android:layout_height="wrap_content"
            android:layout_row="4"
            android:layout_column="1"
            android:layout_marginRight="5dp"
            android:text="2"
            android:textSize="15sp" />

        <Button
            android:layout_width="68dp"
            android:layout_height="wrap_content"
            android:layout_row="4"
            android:layout_column="2"
            android:layout_marginRight="5dp"
            android:text="3"
            android:textSize="15sp" />

        <Button
            android:layout_width="68dp"
            android:layout_height="wrap_content"
            android:layout_row="4"
            android:layout_column="3"
            android:layout_marginRight="5dp"
            android:text="-"
            android:textSize="15sp" />

        <Button
            android:layout_width="68dp"
            android:layout_height="97dp"
            android:layout_row="4"
            android:layout_rowSpan="2"
            android:layout_marginRight="5dp"
            android:text="="
            android:textSize="15sp" />

<!--/-->
        <Button
            android:layout_width="140dp"
            android:layout_height="wrap_content"
            android:layout_row="5"
            android:layout_column="0"
            android:layout_columnSpan="2"
            android:layout_marginRight="5dp"
            android:text="0"
            android:textSize="15sp" />


        <Button
            android:layout_width="68dp"
            android:layout_height="wrap_content"
            android:layout_row="5"
            android:layout_column="2"
            android:layout_marginRight="5dp"
            android:text="."
            android:textSize="15sp" />


        <Button
            android:layout_width="68dp"
            android:layout_height="wrap_content"
            android:layout_row="5"
            android:layout_column="3"
            android:layout_marginRight="5dp"
            android:text="+"
            android:textSize="15sp" />
    </GridLayout>
</LinearLayout>






















  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
  • 242
  • 243
  • 244
  • 245
  • 246
  • 247
  • 248
  • 249
  • 250
  • 251
  • 252
  • 253
  • 254
  • 255
  • 256
  • 257
  • 258
  • 259
  • 260
  • 261
  • 262
  • 263
  • 264
  • 265
  • 266
  • 267
  • 268
  • 269
  • 270
  • 271
  • 272
  • 273
  • 274
  • 275
  • 276
  • 277
  • 278
  • 279
  • 280
  • 281
  • 282
  • 283
  • 284
  • 285
  • 286
  • 287
  • 288
  • 289
  • 290
  • 291
  • 292
  • 293
  • 294
  • 295
  • 296
  • 297
  • 298
  • 299
  • 300
  • 301
  • 302
  • 303
  • 304
  • 305
  • 306
  • 307
  • 308
  • 309
  • 310
  • 311
  • 312
  • 313
  • 314
  • 315
  • 316
  • 317

6、启动应用,查看效果

  • 这里我们需要注意【0】按钮跨两列,【=】按钮跨两行
    在这里插入图片描述
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/432349
推荐阅读
相关标签
  

闽ICP备14008679号