-
LinkGame
说明: 能实现电脑端双人连连看游戏,里面已设置好关卡,只有在规定时间内通过游戏关卡才能进入下一关,否则游戏失败,同时进行倒计时。(It can realize the double-player continuous watching game on the computer side. The game has been set up a checkpoint. Only through the game checkpoint in the prescribed time can we enter the next level, otherwise the game will fail and the countdown will be made at the same time.)
- 2019-04-03 15:34:59下载
- 积分:1
-
linphoneDemo
开源libphone实现视频电话,与web实现互动,与其他设备间实现互动。支持arm,x86,mips价格的移动设备。有些设备呼叫失败,还需调试。
- 2022-03-22 12:59:01下载
- 积分:1
-
layout
这个项目主要是介绍android中常用到的布局文件,对android入门是很好的借鉴(this is the list of layout )
- 2012-11-04 14:35:38下载
- 积分:1
-
带图标的listview 实例分享
带图标 动态创建的 listview
- 2013-03-18下载
- 积分: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
-
一个小迷宫游戏
机器人迷宫游戏源代码,这并不小游戏。有供大家学习交流,所有的源代码。
- 2022-02-25 06:30:32下载
- 积分:1
-
WeightTest
android.widget.layout.table.Weight is setup to exercise tables in which cells use a weight.
- 2014-05-28 17:41:00下载
- 积分:1
-
aDict
android在线电子词典,可在线翻译,支持android2.1以上的版本(android online dictionary)
- 2011-07-09 09:50:19下载
- 积分:1
-
android视频聊天源码下载(wifi)
支持 wifi下 视频 语音聊天
- 2015-03-10下载
- 积分:1
-
electronic-organ-Android
这是一个很经典的关于电子琴的作业,是学习安卓的一个很好的例程,使我们上课的时候老师让我们做的,可以运行的。(This is a classic on the keyboard operation, Andrews is a good learning routines, so that our class when the teacher asked us to do, you can run.)
- 2020-06-30 09:20:01下载
- 积分:1