项目已同步到 GitHub https://github.com/YourDeepEnd/HouseHoldBook 最新界面 部分源码 new_cost_data.xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:andr ...
分类:
移动开发 时间:
2020-02-14 20:17:06
阅读次数:
88
今天学习了如何进行界面之间的跳转。 用Intent进行页面跳转: Intent是一个将要执行的动作的抽象的描述,由Intent来协助完成Android各个组件之间的通讯。下面是一些代码。 1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout ...
分类:
移动开发 时间:
2020-02-12 00:53:48
阅读次数:
103
Android存储概念 File内部存储 通过file=openFileOutput()获得,将数据存储在data/data/+包名+files下面。 layout布局文件: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:and ...
分类:
移动开发 时间:
2020-02-11 14:23:15
阅读次数:
89
LinearLayout 线性布局 RelativeLayout 相对布局 FrameLayout 帧布局 AbsoluteLayout绝对布局 TableLayout 表格布局 GridLayout 网格布局 ConstraintLayout 约束布局 几点布局原则 1.LinearLayout线 ...
分类:
其他好文 时间:
2020-02-07 16:38:58
阅读次数:
950
Android中有六大布局,分别是: LinearLayout(线性布局) RelativeLayout(相对布局) TableLayout(表格布局) FrameLayout(帧布局) AbsoluteLayout(绝对布局) GridLayout(网格布局) 线性布局。这个布局简单的说,就是所有 ...
分类:
移动开发 时间:
2020-02-06 01:12:14
阅读次数:
122
今天在昨天的基础上,相继完成了三个页面的布局和显示情况: 新增加的xml文件如下: activity_add.xml: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android ...
分类:
移动开发 时间:
2020-02-05 18:44:29
阅读次数:
95
android最基本的控件:textview(文本框)、button(按钮)、imageview(图片框) 线性布局Linearlayout:以线性的方式排列 orientation属性:代表方向 vertical 垂直方向 herizontal 水平方向 layout_width:宽度 layou ...
分类:
其他好文 时间:
2020-02-04 20:03:01
阅读次数:
66
昨天电脑重装了系统就没有写学习进度 今天在菜鸟教程里面学习了 一、Android常用布局属性 1. LinearLayout的特有属性 android:orientation:设置布局排列方式 android:layout_weight:设置所占布局的权重 android:weightSum:设置最 ...
分类:
其他好文 时间:
2020-02-04 00:55:22
阅读次数:
93
学习进度2020.02.03 https://www.runoob.com/w3cnote/android-tutorial-linearlayout.html https://www.runoob.com/w3cnote/android-tutorial-relativelayout.html 今 ...
分类:
其他好文 时间:
2020-02-04 00:11:33
阅读次数:
90
昨天对Button组件进行了一定的学习,实际上学习的东西相当少,今天加大了学习量,主要学习了android的六个布局:RelativeLayout【相对布局】,LinearLayout【线性布局】,GridLayout【网格布局】,FrameLayout【帆布局】,TableLayout【表格布局】 ...
分类:
移动开发 时间:
2020-02-03 20:48:10
阅读次数:
82