-
TestForFloatingWindow-master
说明: android 8.0之前的悬浮窗口Demo代码(android before 8.0 float window Demo source code)
- 2019-06-15 21:55:45下载
- 积分: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
-
图片层叠效果
【核心代码】 protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); fp=(AdapterViewFlipper) findViewById(R.id.fp); List listgroup=new ArrayList();
- 2014-05-16下载
- 积分:1
-
android 图片预览 例子源码
android 图片预览 例子源码
- 2014-11-29下载
- 积分:1
-
AudioPermissionTest
Test that audio-related Permissions are enforced for Andriod.
- 2013-10-21 01:17:08下载
- 积分:1
-
EntryTest
Entry Test Source Code for Andriod.
- 2013-11-12 11:44:19下载
- 积分:1
-
renren_android_connect_example
说明: 基于android的Iava语言开发的人人网登陆(Based on the language development of android' s Iava log all network)
- 2011-03-14 00:10:52下载
- 积分:1
-
android 显示GPS搜星状态及信号强度的APK
android 显示GPS搜星状态及信号强度的APK,UI有自定义控件,入门的同学可以下载学习研究哦。
- 2022-07-15 10:42:20下载
- 积分:1
-
MusicPlayer音乐播放器
手机音乐播放器是一种在手机上用于播放各种音乐文件的多媒体播放软件。它涵盖了各种音乐格式的播放工具,比如:手机自带播放器、MP3播放器,WMA播放器,MP4播放器等,目前手机音乐播放器主要支持的格式有MP3、WMA、AAC、AAC+、MID、AMR、OGG、MP4、FLAC等,它们在手机中运行,不仅界面美观,而且操作简单,带你进入一个完美的音乐空间。(A mobile music player is a multimedia playing software for playing various music files on a mobile phone. It covers a variety of music format playback tools, such as: mobile phone player, MP3 player, WMA player, MP4 player, etc. Currently mobile phone music player mainly supports MP3, WMA, AAC, AAC+, MID, AMR, OGG, MP4, FLAC, etc., they run in the mobile phone, not only the interface is beautiful, but also easy to operate, bringing you into a perfect music space.)
- 2020-06-18 13:20:01下载
- 积分:1
-
Android 自定义绘制字符串(Android简单控件的开发及应用-02_23).zip
Android 自定义绘制字符串(Android简单控件的开发及应用-02_23).zip
- 2019-10-06下载
- 积分:1