-
stagefright_h264
android源码中提取的h264编解码部分(android H264 encoder & decoder source code)
- 2011-12-27 18:03:49下载
- 积分:1
-
STM32三菱PLC源码原理图
STM32三菱PLC源码原理图
- 2020-12-05下载
- 积分:1
-
gd32F303实例
【实例简介】小熊派GD32学习过程中的资料和编写的代码
- 2021-06-25 00:31:12下载
- 积分:1
-
momo
说明: 自己闲时网上找的改的陌陌的客户端,UI界面基本都有,可以作为学习的参考(When I am free, I can find some new clients on the internet. The UI interface is basically available, which can be used as a reference for learning.)
- 2019-03-01 14:10:17下载
- 积分:1
-
qt串口助手源码
qt写的串口助手
- 2021-05-06下载
- 积分:1
-
llk
安卓小游戏开发实例,一个连连看小游戏,完整的,导入eclipse即可用(Game development instance in Andrews, a the Lianliankan small games, complete, into eclipse to)
- 2020-12-30 14:39:00下载
- 积分:1
-
androidtest
ZXING 测试程序,android 环境下的zxing测试环境(zxing test)
- 2020-09-17 15:57:54下载
- 积分: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/C++实现雷达界面
实现雷达扫描界面的效果
- 2016-10-21下载
- 积分:1
-
TilePuzzle_Android
拼图游戏代码,java实现,可参考,仅供学习(Jigsaw code, java implementation, reference, only to learn)
- 2013-09-24 16:33:20下载
- 积分:1