-
android 打开图片,可调节饱和度、色相和亮度
实现打开图片功能
- 2015-07-02下载
- 积分:1
-
contacts_API
An android program for building contact and associated apps...
- 2014-05-13 12:39:08下载
- 积分:1
-
图片循环播放APP
图片定时循环播放,fragment的使用,图片轮播功能,代码的实现,可扩展,可参考
- 2022-01-24 14:04:46下载
- 积分:1
-
带 Android 应用的桌面蓝牙锁定程序
翻译 maninwest@Codeforge 作者:Arkadeep De@CodeProject在创建了一个 USB 锁定程序后,我想应该创建一个蓝牙锁。这样做了以后,我想,为什么不创建一个安卓应用来访问呢?让我们一起来了解如何创建具有安卓应用的蓝牙锁定程序。使用代码让我们来了解代码。首先,您需要找到设备附近的蓝牙设备:InTheHand.Net.Sockets.BluetoothClient bc = new InTheHand.Net.Sockets.BluetoothClient();
InTheHand.Net.Sockets.BluetoothDeviceInfo[] array = bc.DiscoverDevices();在数组中,所有可发现的设备都会列出,现在你可以查看每个设备的 MAC 地址。 for (int i = 0; i < array.Length; i++)
{ this.address_array[i] = array[i].DeviceAddress;
mac = mac + this.address_array[i].ToString();
}完成检查后,检查你的设备的 mac 地址是否在发现的设备中。如果有,锁定计算机。如何锁定计算机:[DllImport("user32.dll", SetLastError = true)] static extern bool LockWorkStation(); bool result = LockWorkStation(); if (result == false)
{ // An error occurred throw new Win32Exception(Marshal.GetL
- 2022-06-14 15:28:20下载
- 积分: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
-
基于Android的无线点餐系统(服务器+客户端+数据库)
aaaaaaaaaaaaaaa花了很长时间找到的资源啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊
- 2022-01-28 23:33:25下载
- 积分:1
-
百度地图demo
Tell you how to use baidu map api ,this is an easy demo and you can learn how to make a baidu map engien!
- 2022-06-14 11:08:15下载
- 积分:1
-
Android 宾馆系统源码
一个Android上宾馆系统的源码,包含完整的eclipse工程,代码和资源,还有AndroidManifest.xml文件
- 2022-04-25 15:32:57下载
- 积分:1
-
daocrud
android的DAO操作(provider带观察者模式)(
The DAO android operating (provider with observer pattern))
- 2013-12-14 00:57:35下载
- 积分:1
-
ListView下拉刷新,上拉加载更多
ListView下拉刷新,上拉加载更多
- 2018-05-31下载
- 积分:1