-
中文語言siri源碼(Andriod)
此為使用於Andriod的中中文語言siri源碼(Andriod),
其源碼為JAVA,使用於Andriod環境,
功能為和iPhone之SIRI語音類似,
可應用於需語音辨識之應用。
- 2022-03-25 11:00:24下载
- 积分:1
-
LanguageApp_Sodino
Android中不同语言的切换功能,比如英文和越南文之间的切换。UI界面上的文字随着语言的切换就改变为相应的文字(Android different language switching functions, such as switching between English and Vietnamese. UI interface on the text with the language switch is changed to the corresponding text)
- 2012-10-10 10:40:34下载
- 积分:1
-
android 仿qq侧滑菜单 实例源码下载
仿照qq 5.0 侧滑效果,很棒
- 2015-01-28下载
- 积分:1
-
Android刷新列表
在各种视图(View)中加入拉动刷新(上拉,下拉、左拉、右拉)功能。Demo中加入拉动刷新功能的View有:列表(ListView),网格(GridView),滑动视图(ScrollView),网页(WebView),分页视图(ViewPager)等等。
测试环境: [Code4A
- 2022-08-13 00:14:36下载
- 积分: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
-
Android 模拟ListView列表界面滑动选择删除功能【源码】
Android 模拟用户列表界面,ListView列表信息的滑动删除和选择删除功能,这个功能在平时,相信大家在玩手机的时候经常遇到的,在列表界面,一般是向左滑动,即可出现删除按钮,且滑对对应行会显示出选择框,滑动结束的时候整个列表进入多癣单选状态,用户可选择某项内容来删除,也可通过单击该行最右侧滑出的“删除”按钮来操作。注:更新界面时,记录为 未选中和滑动删除按钮不可见,可见时,再次单击设置不可见,当滑动距离大于40时,显示该位置的删除按键。
- 2023-08-05 22:15:03下载
- 积分:1
-
SZZS(andriod_level)
android安卓版水准测量数据记录电子手薄程序,可平差及导出数据,可导入例子数据等功能。(android Andrews version of the standard measurement data recording electronic hand book program, you can export data and adjustment, can import example data and other functions.)
- 2016-04-30 14:28:22下载
- 积分:1
-
android opencl 示例
简单的android open cl代码示例。科学计算可以参考。
- 2022-01-28 01:48:09下载
- 积分:1
-
Android 手电筒
* 最亮、 最快、 和最方便的 LED 手电筒 !
* 你将永远不会忘了带在有需要时手电筒 !
* 与最优雅的设计和快速的启动
主要特点:
•
- 2023-07-08 12:20:04下载
- 积分:1
-
Android_sdk-(1)
android聊天软件界面 简洁 省的实现(android chat software)
- 2013-08-09 17:16:59下载
- 积分:1