-
Bluetooth
安卓蓝牙通信功能测试 自己做的能实现蓝牙聊天室 比较简单的适合新手(Andrews Bluetooth communication function is relatively simple to test myself to achieve Bluetooth chat rooms for novice)
- 2012-09-14 10:12:18下载
- 积分:1
-
MaterialViewPager-master
一款Material风格的ViewPager第三方库(Material-ViewPager third-library)
- 2017-07-18 15:08:53下载
- 积分:1
-
基于android的天气预报项目
此项目是一款基于android手机的天气预报项目,能够查询全国的省份,城市,区县等,可获得不同区县的天气信息,包括温度,空气质量,建议等。开发中使用了多种开源框架,OKHttp,Glide,等。
- 2023-03-08 08:10:03下载
- 积分:1
-
安卓二维码扫描
本项目是基于zxing库的安卓扫码的自己写的一个Demo,通过自定义扫码界面和动画效果,支持自动对焦,能够扫描二维码和条形码,还是在扫描界面自己定义其他功能按钮,供初学者学习使用。
- 2022-07-19 02:50:59下载
- 积分:1
-
安卓蓝牙调试助手源码
安卓蓝牙调试助手源码,亲测可用,提供源码,大家可以自行修改,安卓蓝牙调试助手源码,亲测可用,提供源码,大家可以自行修改,安卓蓝牙调试助手源码,亲测可用,提供源码,大家可以自行修改
- 2023-02-08 17:30:03下载
- 积分:1
-
Android 图书管理系统+后台系统
一个基于Android环境运行的图书管理系统+后台系统,两者是独立分开的,正确运行需要数据库支持,本源码包中的仅是代码部分,包括了子系统后台部分。两个系统面对的用户不一样,一个是学生,一个是管理员。
,这里牵涉一个问题:为什么要重写toString()呢?因为适配器在显示数据的时候,如果传入适配器的对象不是字符串的情况下,直接就使用对象.toString()。
运行界面效果请参见截图所示,需要配置数据库,db.sql是数据库附加脚本。
- 2022-02-12 05:48:54下载
- 积分:1
-
longdi
Android应用源码技术成熟的隆笛音乐播放器是一款音乐播放器源码,应该说这个播放器太强大了,功能很多我的音乐、我的最爱、文件夹、查看歌手、查看专辑等等。
本项目UI设计的也很炫,可以换肤想设置哪种就设置哪种,项目中使用了现在特别火的slidemenu滑动效果和fragment。
项目中设置时间这一项感觉特别人性化可以在睡觉之前设置一下。可以扫描本地歌词,可以摇一摇换歌,可以自动下载歌词。(Android application source code technology mature lung flute music player is a music player source code, should say the player is too strong, the function a lot of my music, my favorite, folder, view artist, album view and so on.
The UI design is also very Hyun, skin to which settings set which, the project used now special fire slidemenu sliding effects and the fragment.
Items in the setting time this feeling is particularly humane can be set before going to bed. Can scan the local lyrics, you can shake a shake to change songs, you can automatically download the lyrics.)
- 2016-05-21 17:58:05下载
- 积分:1
-
Android_Interface-tutorial-Daquan
android 界面教程大全
很使用 喜欢做界面的朋友,这必然是首选(the android interface tutorial Daquan is very friends like to do the interface, which is bound to be preferred)
- 2012-11-05 13:01:19下载
- 积分: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
-
海康威视视频实时操控DEMO源码android
应用背景关键技术DEMO里面有摄像头预览、截图、向左转、向右转等功能
- 2022-03-22 20:32:07下载
- 积分:1