摘要:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.co 阅读全文
摘要:
一.进度对话框 ProgressDialog 1.用法 1-new progressDialog(Context) 2-setTitle (标题) 3-setMessage (信息) 4-show() 显示 5-setProgressStyle(ProgressDialog.STYLE_HORIZO 阅读全文
摘要:
自定义对话框 //自定义对话框 public void bt_4(View v) { //1-Layout文件加载器 //LayoutInflater layoutInflater=getLayoutInflater(); // View view=layoutInflater.inflate(R. 阅读全文
摘要:
对话框 一.分类 警告对话框AlertDialog:①一般对话框②单选对话框③复选对话框④自定义对话框 进度对话框 日期对话框 时间对话框 二.警告对话框 AlertDialong 1.一般 不能直接实例化使用 使用内部构造器来生成对话框 new AlertDialog.Builder(contex 阅读全文
摘要:
1.线性布局 添加按钮 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schema 阅读全文
摘要:
1.日历 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" andro 阅读全文
摘要:
一.事件 概念: 事件源:事件发起者,也就是视图组件 事件:事件源产生的动作,并包含相关信息 监听器: 是一些关于事件处理的接口负责拦截和处理事件信息要实现相关监听器的接口,把处理事件的业务逻辑写在回调方法里要把监听器的实现类的实例和事件源进行关联 回调方法: 负责处理事件由监听器监听到事件之后自动 阅读全文
摘要:
<?xml version="1.0" encoding="utf-8"?> <GridLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/ 阅读全文
摘要:
线性布局 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" an 阅读全文