登录
首页 » Others » Android-PPT

Android-PPT

于 2015-05-05 发布 文件大小:19459KB
0 147
下载积分: 1 下载次数: 5

代码说明:

  Android learn. This document include all PPT and other meterials to help you learn the Android development(Android learn. This document include all PPT and other meterials to help you learn the Android development.)

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 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
  • BaiduMapApiDemo
    百度地图api,有各项功能的demo,详尽、具体,适合初学者探究(Baidu map api, there are various functions of the demo, detailed, specific, suitable for beginners to explore)
    2013-10-23 14:45:55下载
    积分:1
  • memristor
    两个HP忆阻器的SPICE模型,可以设置P等参数。(Two HP memristor SPICE model parameters can be set P)
    2021-03-22 14:59:17下载
    积分:1
  • IIC-OLED显示屏新资料(SSD1306)
    STM32F103C8T6的硬件I2CPB6 -- SCL; PB7 -- SDA
    2020-12-01下载
    积分:1
  • android 侧滑 实例源码下载
    library项目 来自 https://github.com/jfeinstein10/SlidingMenuSlidingMenuFragment项目需要依赖 library项目具体操作方法,1.导入以上两个项目到eclipse2.右键 SlidingMenuFragment项目>>属性>>左侧Android菜单>> 点击右侧底部 Add按钮3.选择 library项目即可
    2015-02-27下载
    积分:1
  • android 百度地图API最新版 gps定位 获取详细地址 实例源码下载
    百度地图api实例代码,无须申请appkey即可使用
    2013-02-06下载
    积分:1
  • Findmybuddy-2015-05-09
    Find my Buddy is an android project where a person can track his friend’s location using Global Positioning System (GPS). It is implemented using android API packages.
    2015-05-10 08:46:03下载
    积分:1
  • TakePhoto
    Take photo in android delphi app
    2021-02-19 22:49:43下载
    积分:1
  • 706567
    Android的多媒体框架OpenCore介绍,精选android项目书籍,很好有参考资料。(OpenCore multimedia framework Android, select Android project books, very good reference material.)
    2013-12-04 09:36:15下载
    积分:1
  • android 高德地图 实例源码下载
    android 高德地图 实例源码下载
    2014-08-21下载
    积分:1
  • 696518资源总数
  • 106164会员总数
  • 18今日下载