-
ADT-10.0.1
开发android必备插件开发android必备插件开发android必备插件开发android必备插件开发android必备插件开发android必备插件(Android android development of the necessary plug-in plug-in developers must develop the necessary plug-in development android android android development of the necessary plug-ins necessary prerequisite plug-in plug-in development android)
- 2011-05-02 11:14:22下载
- 积分:1
-
javaweb电影网站
http://127.0.0.1:8081/moviesys/manage/login.jsp管理员账号:王长荡密码:kissherhttp://127.0.0.1:8081/moviesys/用户账号:aa密码:aa数据库导入:配好path环境的前提下在密令窗口里执行:imp scott/tiger@xe file=d:DVD.dmp
- 2021-05-06下载
- 积分:1
-
recovery-update
update zip for android
- 2012-01-13 01:25:03下载
- 积分:1
-
Android 图像简单的效果
此 Projectcan 图片更改、 添加颜色通道
此示例中,可以添加黄色通道和红色通道
它使用了类的LightingColorFilter ","setColorFilter" 和 "drawFilter"
- 2022-07-17 13:03:01下载
- 积分:1
-
Android Intent开发实例
Android Intent开发实例 核心代码:package com.amaker.ch06.app;import com.amaker.ch06.app.R;import android.app.Activity;import android.content.Intent;import android.os.Bundle;import android.view.View;import android.view.View.OnClickListener;import android.widget.Button;import android.widget.EditText;/** * @author 郭宏志 * 发送Email */public class MainActivity extends Activity { // 声明视图组件 private EditText toEditText,subjectEditText,contentEditText; private Button sendBtn; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); // 实例化视图组件 toEditText = (EditText)findViewById(R.id.toEditText01); subjectEditText = (EditText)findViewById(R.id.subjectEditText01); contentEditText = (EditText)findViewById(R.id.contentEditText01); sendBtn = (Button)findViewById(R.id.sendButton01); // 为按钮添加单击监听器 sendBtn.setOnClickListener(listener); } // 发送按钮单击监听器 private OnClickListener listener = new OnClickListener() { @Override public void onClick(View v) { // 获得输入信息 String to = toEditText.getText().toString(); String subject = subjectEditText.getText().toString(); String content = contentEditText.getText().toString(); // 创建Intent Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND); // 设置内容类型 emailIntent.setType("plain/text"); // 设置额外信息 emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[]{to}); emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, subject); emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, content); startActivity(Intent.createChooser(emailIntent, "发送邮件...")); } };}
- 2014-11-24下载
- 积分:1
-
AndroidGesturePassword
安卓手机的手势密码源码,用户可以设置九宫格密码并校验。(gesture password on android)
- 2013-12-14 20:35:19下载
- 积分:1
-
android 猜名字 有奖例子 完整源码
一个简单的android 实例,用RadioButton 以及RadioGroup实现
- 2013-07-22下载
- 积分:1
-
android-upload-service-master
说明: 以前做的android的FTP demo,功能没有完全实现,上传和下载的限速是虚拟的(The FTP demo of Android has not been fully implemented. The speed limit of upload and download is virtual)
- 2020-06-25 21:00:02下载
- 积分:1
-
84564
Android的传感器系统,精选android项目书籍,很好有参考资料。(The sensor system Android, select Android project books, very good reference material.)
- 2013-12-04 08:49:42下载
- 积分:1
-
jq 转盘抽奖 示例代码
jq 转盘抽奖 示例代码
- 2014-10-26下载
- 积分:1