https://github.com/tangly1024/learning_android
学习安卓开发
https://github.com/tangly1024/learning_android
Last synced: 2 months ago
JSON representation
学习安卓开发
- Host: GitHub
- URL: https://github.com/tangly1024/learning_android
- Owner: tangly1024
- Created: 2019-04-29T07:36:15.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-29T08:59:43.000Z (about 6 years ago)
- Last Synced: 2024-10-04T21:41:20.919Z (8 months ago)
- Language: Java
- Size: 428 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 学习安卓开发
> 参考教程: [W3CschoolAndroid基础入门教程](https://www.w3cschool.cn/uawnhh/?)## 布局
常用两个:
- LinearLayout(线性布局)- RelativeLayout(相对布局)
其他:
- TableLayout (表格布局)
- FrameLayout (帧布局)
- GridLayout (网格布局) 安卓4.0后引入
- AbsoluteLayout (绝对布局)
## 表单控件
- TextView (文本框)
- EditText (输入框)
- Button (按钮)
- ImageView (图像视图)
- RadioButton(单选按钮)&Checkbox(复选框)
- ToggleButton(开关按钮)
- ProgressBar(进度条)
- SeekBar (拖动条)
- RatingBar (星级评分条)
## 控件
- ScrollView (滚动条)
- Date & Time (日期/时间)
- **Adapter** (适配器)