-
mapView
android的地图编辑器实例,告诉你如何写地图(android map editor instance, tell you how to write map)
- 2013-07-23 09:25:56下载
- 积分:1
-
android-pulltorefresh-master
android上拉下拉刷新 PullToRefresh Android-PullToRefresh-master 注释掉PullToRefreshViewPager 里面的viewPager.setId(R.id.viewpager) 就可以了
androidpull..fresh(pull-down refresh on android PullToRefresh Android-PullToRefresh-master commented PullToRefreshViewPager inside viewPager.setId (R.id.viewpager) on it androidpull..fresh)
- 2014-11-02 21:48:05下载
- 积分:1
-
Android-DirectionalViewPager-master
viepager结合fragment,很好的实现了!(viewpager and fragment )
- 2013-07-26 11:41:58下载
- 积分:1
-
通讯录
一款新增删除修改的手机通讯录的软件,大家可以参考,给予指正,修改,让它慢慢变得更好
- 2023-05-01 19:25:05下载
- 积分: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
-
andbook
This document was written for developers who have worked with Java™ before and want to start developing for the Android Platform. I tried to make this as much “hands on” as possible, placing example codes everywhere it fit. Also I tried to insert as many picture as possible, because they liven up the learning process and relax the reader’s eyes.
- 2011-12-01 15:09:27下载
- 积分:1
-
android 图片裁剪
demo实现功能为拍照或者从sd卡中选择图片并进行裁剪,裁剪功能是调用了android系统内部自带的图片裁剪的功能
- 2022-05-18 06:22:54下载
- 积分:1
-
clock
简单的安卓系统闹钟功能的实现,适合新手学习参考。(Simple Andrews alarm clock function, reference for novice to learn)
- 2011-09-26 09:49:11下载
- 积分:1
-
Android高级应用源码-简易微信客户端和服务器源码
界面仿照了微信,有客户端和服务器,Soket,服务器端实现了账号的注册,登录功能,客户端有聊天等功能,通信功能后续加上去,供学习者们参考和效仿。如果问题可以随时询问哦。~~~~~~~~~~~
- 2022-06-20 18:16:15下载
- 积分:1
-
天猫手机端html模板源码下载
天猫手机端html模板源码下载
- 2015-05-20下载
- 积分:1