-
安卓socket接收图片
通过socket接收图片,服务器为PC机编程语言为C++,PC发送E盘FileTest下的文件夹到安卓手机上(目前支持bmp格式,可以增加其他格式),通过文件块分段传输,保证图片能够完整的在TCP环境下传输到安卓客户端来。
- 2022-08-10 00:05:48下载
- 积分:1
-
星星投票组件及前台功能展现android源代码
星星投票组件及前台功能展现android源代码,类似现在很多网站上的投票功能,淘宝购物上面有,点击星星会变色,本源码主要实现这一功能,当然若需要投票成功,还需要数据库支持。部分代码如下所示:
public void onRatingChanged(RatingBar ratingBar, float rating,
boolean fromUser)
{
smallRatingBar.setRating(rating);
indicatorRatingBar.setRating(rating);
if (ratingBar.getId() == R.id.ratingbar1)
textView.setText("ratingbar1的分数:" + rating);
else
textView.setText("ratingbar2的分数:" + rating);
}
- 2022-06-13 05:38:43下载
- 积分:1
-
Android 的数字时钟
这一项目定义 anlalog 和数字时钟,你可以模拟和数字时钟通过创建此应用程序。
此应用程序是非常有用的大学生干那里最后课。
- 2023-08-19 00:35:04下载
- 积分:1
-
开发学习的例子
开发学习的例子
- 2015-05-09下载
- 积分:1
-
此代码为Android的模拟微信界面的代码
此代码为Android的模拟微信界面的代码,很适合Android初学者学习
- 2022-05-07 15:02:42下载
- 积分:1
-
求职推荐系统安卓应用
资源描述这是推荐的工作对用户兴趣的基础上,neighborhood.this Android应用是Android应用开发参考。
- 2022-12-21 17:20:07下载
- 积分:1
-
testphonegap
membuat template phonegap
- 2018-02-21 09:40:39下载
- 积分: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
-
communication-spftware
聊天软件,基于TCP/IP协议的聊天软件开发(communication software)
- 2013-10-25 20:29:57下载
- 积分: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