Android基础
文章平均质量分 82
liusslove
这个作者很懒,什么都没留下…
展开
-
android UI基本控件
1、了解以下基本控件TextView(文本控件)字体大小用spEditText(可输入文本文档)Button(按钮)RadioButton以及RadioGroup(单选按钮)单选按钮要注意编写ID,否则不能单选CheckBox(多选框)ImageView(图片控件)/22、TextView的基本属性 android:text android原创 2016-07-27 22:25:54 · 289 阅读 · 0 评论 -
rollPagerView (图片轮播控件)和kenBurnsView(图片自动缩放控件)
在布局中加入一个RollPagerView(图片轮播的控件)和KenBurnsView控件(图片自动缩放的控件)注意:*不要忘记写读写权限:uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />uses-permission android:name="android.permission.W原创 2016-08-14 20:56:08 · 613 阅读 · 0 评论 -
SharedPreferences方法的基本使用
通过SharedPreferences方法创建.xml文件,存储数据具体用法如下: package com.example.administrator.jreduch08;import android.content.Intent;import android.content.SharedPreferences;import android.os.Bundle;impo原创 2016-08-14 20:50:33 · 318 阅读 · 0 评论 -
网络基础框架
1、学习了Android网络基本框架,了解了UI的get和post用法的区别2、AsyncTask异步任务类,必须通过此类来实现3、使用这两种用法获取内容 以下程序为get和post方法的具体使用:package com.example.administrator.jreduch07;import android.os.AsyncTask;import原创 2016-08-11 21:31:50 · 290 阅读 · 0 评论 -
RoundImageView图片为圆形
使布局中图片控件ImageView为圆形转载 2016-08-10 22:20:05 · 190 阅读 · 0 评论 -
了解隐示Intent跳转方法
以下主要介绍了关于隐示Intent的使用方法: 1、在Activity布局中添加了8个Button控件,分别为拨打电话、发送短信、打开网页、播放音乐、播放视频、播放图片、安装apk和通知栏等内容,代码见下面: 2、在布局中添加了一个ImageView控件调用RoundImageView使得图片为圆形, 3、对ImageView控件进行监听,使用PopWindow在点击图片后弹出一个PopWindow 4、对弹出的PopWindow设置:重建一个原创 2016-08-10 22:16:08 · 1182 阅读 · 0 评论 -
Android动画效果设置
1、进行画面跳转的方法Intent intent=new Intent(ToolBarActivity.this,MainActivity.class);startActivity(intent);2、设置动画效果系统自带的动画样式,左边进入,右边退出overridePendingTransition( android.R.anim.slide_in_left,原创 2016-07-28 21:46:12 · 433 阅读 · 0 评论 -
六大布局及相应属性
v 一、布局Android六种布局方式1、LinearLayout线性布局2、AbsoluteLayout坐标布局3、RelativeLayout相对布局 4、FrameLayout帧布局5、TableLayout表格布局6、GridLayout 1、LinearLayout线性布局所有的子元素都按照垂直或水平的顺序在界面上排列如果垂直排列,原创 2016-07-31 17:16:46 · 970 阅读 · 0 评论 -
生命周期和画面跳转
Activity生命周期和画面跳转原创 2016-07-31 16:51:02 · 285 阅读 · 0 评论 -
RelativeLayout 布局
xml version="1.0" encoding="utf-8"?>RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent原创 2016-07-27 22:40:26 · 237 阅读 · 0 评论 -
Android 对对话框进行监听
首先进行布局,创建按钮 xml version="1.0" encoding="utf-8"?>RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_wid原创 2016-07-27 22:35:20 · 1384 阅读 · 0 评论 -
PullToRefreshGridView实现上拉加载和下拉刷新,使用Volley框架解析数据
1、加载布局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:id="@+id/activity_原创 2017-01-22 16:30:37 · 453 阅读 · 0 评论