上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页
摘要: 1 2 12 13 19 20 package com.hanqi.testapp2; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import j... 阅读全文
posted @ 2016-05-16 10:53 烟_雨_江_南 阅读(372) 评论(0) 推荐(0) 编辑
摘要: 一.进度对话框 ProgressDialog 1.用法 1-new progressDialog(Context) 2-setTitle (标题) 3-setMessage (信息) 4-show() 显示 5-setProgressStyle(ProgressDialog.STYLE_HORIZO 阅读全文
posted @ 2016-05-15 14:16 烟_雨_江_南 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 一.日期对话框 DatePickerDialog 1.用构造方法 new DatePickerDialog(context,DatePickerDialog.onDateSetListener,年,月,日) 2.监听器 OnDateSetListener 1-void onDateSet(DateP 阅读全文
posted @ 2016-05-15 14:10 烟_雨_江_南 阅读(201) 评论(0) 推荐(0) 编辑
摘要: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.co 阅读全文
posted @ 2016-05-13 20:57 烟_雨_江_南 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 一.单选对话框 1.常规用法同一般对话框 2.Builder方法:设置单选选项setSingleChoiceItems(选项数组,默认被选中的选项索引,点击监听器DialogInterface.OnClickListener()): onClick(DialogInterface dialog, i 阅读全文
posted @ 2016-05-13 20:44 烟_雨_江_南 阅读(739) 评论(0) 推荐(0) 编辑
摘要: 一.分类 1.不可拖动 ProgressBar 2.可拖动 1>SeekBar 2>RatingBar 二.ProgressBar 1.style 样式 1>水平 ?android:attr/progressBarStyleHorizontal; 2>旋转 1-默认样式 2-设置大小 ?androi 阅读全文
posted @ 2016-05-12 13:04 烟_雨_江_南 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 一.分类 1.选项菜单 OptionMenu 1>按menu键触发 2>事件源时Activity 2.上下文菜单 ContextMenu 长按组件时触发。 3.子菜单 SubMenu addSubMenu()添加子菜单。 1 <?xml version="1.0" encoding="utf-8"? 阅读全文
posted @ 2016-05-12 12:57 烟_雨_江_南 阅读(533) 评论(0) 推荐(0) 编辑
摘要: 对话框 一.分类 警告对话框AlertDialog:①一般对话框②单选对话框③复选对话框④自定义对话框 进度对话框 日期对话框 时间对话框 二.警告对话框 AlertDialong 1.一般 不能直接实例化使用 使用内部构造器来生成对话框 new AlertDialog.Builder(contex 阅读全文
posted @ 2016-05-12 12:38 烟_雨_江_南 阅读(287) 评论(0) 推荐(0) 编辑
摘要: package com.hanqi.testapp2; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.util.Log; import android.view.View... 阅读全文
posted @ 2016-05-10 21:32 烟_雨_江_南 阅读(284) 评论(0) 推荐(0) 编辑
摘要: 菜单 分类 选项菜单 OptionMenu 按menu键触发 事件源是Activity 上下文菜单 ContextMenu 长按组件时触发 子菜单 SubMenu addSubMenu( )添加子菜单 用法 选项菜单 创建:重写onCreatOptionsMenu(Menu menu) 在代码里给m 阅读全文
posted @ 2016-05-09 20:16 烟_雨_江_南 阅读(228) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页