-
文件共享
文件可以使用下面的代码共享 这是一种用于共享文件的java代码 文件可以使用下面的代码共享 这是一种用于共享文件的java代码
- 2022-01-25 16:06:17下载
- 积分:1
-
android 小米便签例子源码下载
android 小米便签例子源码下载
- 2015-04-08下载
- 积分: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
-
c-jni-java
C中通过JNI调用java对象接口,也有java调用c接口,是在Android开发环境中运行的(C through JNI call java object interface)
- 2013-08-23 10:00:37下载
- 积分:1
-
员工考勤系统
功能介绍:登陆用户分为管理员,和普通员工。管理员可以管理员工信息,管理部门信息,修改工资,修改加班费用和惩罚费用,设置考勤时间,可以查询工资 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-07-04 02:09:31下载
- 积分:1
-
宝淘在线商城
说明: 宝淘在线商城网站致力于向用户提供产品展示以及以购物为核心的网上购物服务,开发人员需要通过后台商家管理将自己的产品展现给客户,让客户可以通过网站便能自由的浏览并选择购买商品。在线商城共分两个部分,一部分是面向用户的部分,包括:登陆网站、用户注册成为会员(发表帖子)、浏览网站商品、选择商品加入购物车、购物车管理(删除、修改操作)、提交订单、付款、对购买后的商品进行评价等操作;另外一部分是面向后台商城管理部分,这部分的内容包括:商家注册、产品的添加、删除、?查询、订单的管理、对商家的管理(仅限超级管理员)等。(Baotao online mall website is dedicated to providing users with product display and online shopping services with shopping as the core. Developers need to show their products to customers through background business management, so that customers can browse and choose to buy products freely through the website. The online shopping mall is divided into two parts, one is for users, including: log on to the website, register as a member (post), browse the website products, select products to join the shopping cart, shopping cart management (delete, modify operations), submit orders, pay, evaluate the purchased products, etc.; the other part is for the background shopping mall management department This part includes: business registration, product addition, deletion, query, order management, business management (super administrator only), etc.)
- 2020-04-16 20:42:12下载
- 积分:1
-
Android_hotfix
说明: 阿里巴巴出品的,安卓移动端,热修复技术文档(Alibaba published , Android Mobile, Hot Repair Technical Documents)
- 2020-06-22 22:20:01下载
- 积分:1
-
SSM汽车租赁系统
使用java SSM框架编写的汽车租赁系统和大家分享,代码较多不一一展示
- 2020-01-09下载
- 积分:1
-
BaiduMap_AndroidSDK_v3.6.0_All
百度地图历史版本 BaiduMap_AndroidSDK_v3.6.0_All(BaiduMap_AndroidSDK_v3.6.0_All)
- 2021-01-09 18:08:51下载
- 积分:1
-
NET_fpga
android application for authentification
- 2018-02-04 08:00:13下载
- 积分:1