-
TopFrame
像"天天动听"软件一样实现最上方的悬浮文本(Suspended above the text to achieve the most like a " nice day" software)
- 2012-10-16 17:55:24下载
- 积分:1
-
roceptiongenerate
说明: 本文件包含通信所有过程,从调制,扩频,发送到接收,经过解扩,解调等,其中信道可以随机产生时变的多径信道,(This document contains all communication processes, from modulation, spread spectrum, transmission to reception, despreading, demodulation, etc., where channels can randomly generate time-varying multipath channels.)
- 2019-03-28 03:44:42下载
- 积分:1
-
发送短信应用程序
发送短信应用程序描述你如何在安卓系统发送短信。在此应用程序中,你会知道两种方法来发送短信 1) 由意图 2) 由 SMS 管理器中。
- 2022-02-11 19:44:50下载
- 积分:1
-
封装okhttp请求
1.封装了ok http框架,okhttp 是专门用来请求网络的框架。目前是比较好用的框架,但是 使用的时候也要封装一下。封装后方便直接拿来用,无需考虑一些其他bug什么的
- 2022-07-20 23:10:14下载
- 积分:1
-
android-video
比较实用的在Android实时采集视频,并在PC上显示出采集到的视频的程序,包括PC端和Android端程序,基于Android 1.5
在HTC G3上测试通过。-Android more practical in real-time video capture and
display the PC to the video capture process, including the PC-side
program and Android, HTC G3 based on the Android 1.5 in the test. 源代码AndroidVideo.classpath
...................project
..................AndroidManifest.xml
..................inAndroidVideo.apk
.....................classes.dex
......................omsunshineAndroidVideo$Kit.class
................................AndroidVideo.class
................................R$attr.class
................................R$drawable.class
................................R$id.class
................................R$layout.class
............
- 2022-10-04 06:05:03下载
- 积分:1
-
Tree
android树形分级列表demo.java编写(Tree hierarchical list)
- 2019-02-21 10:16:16下载
- 积分:1
-
android opengl2.0在安卓上的应用 月球绕太阳转
一个学习opengl2.0的小项目,如果对opengl感兴趣可以下来看看,
主要涉及
双重纹理的使用
对着色器的应用
如何通过触屏控制旋转
- 2022-05-20 21:04:12下载
- 积分:1
-
课程表安卓源代码
安卓源代码,安卓源代码,安卓源代码,安卓源代码,安卓源代码,安卓源代码,安卓源代码,安卓源代码,安卓源代码,安卓源代码,安卓源代码,安卓源代码,安卓源代码,安卓源代码,
- 2023-01-14 10:55:03下载
- 积分:1
-
HelloAndroid
HelloAndroid 这是一个简单地安卓程序,导入eclipse即可运行,适合初学者体验编写安卓程序的乐趣。这是上传的第一个安卓程序。后续将不定期更新。
- 2022-11-02 10:35:03下载
- 积分: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