[安卓开源]安卓wifi搜索连接热点创建项目.zip
2022-06-09 10:18:38 5.95MB android
1
android ftp客户端,实现了登录,下载,上传,剪切,重命名,新建文件夹,删除,同步等功能 android ftp客户端,实现了登录,下载,上传,剪切,重命名,新建文件夹,删除,同步等功能
2022-06-08 23:49:49 466KB android ftp客户端
1
FIND3 Android App This is the open-source minimal Android app for using with FIND3. This app will allow you to use your phone to perform constant scans of Bluetooth and WiFi signals and levels that can be associated with certain locations in your home to allow internal positioning. To get started with this app, use Android Studio 3 and "Import Project" after downloading the Git repository. Roadmap [x] Get locations for a family after it is typed in, and use those for autocompletion. Documen
2022-06-06 10:50:01 288KB Android代码
1
poem 一款诗歌阅读的安卓app,包括搜索,推荐,生成图片分享,分类查看,设置等功能,需要服务器做后台支撑
2022-06-05 13:52:08 17.79MB Android代码
1
SubwayTooter Mastodon client app for Android phone/tablet. Requirements Android 5.0 or later Supported SNS service Mastodon https://joinmastodon.org/ Misskey https://joinmisskey.github.io/ (experimental support) Features "Multiple account" "Multiple column" with freely rearrangement "Pseudo account" that can read instance timeline without login "Cross account operation" that can fav/boost/reply toots or follow users over accounts/instances "Emoji" same glyphs as the PC browser version "Cus
2022-06-03 00:08:44 7.37MB Android代码
1
在线音乐播放器完整项目.zip
2022-06-02 13:47:07 5.27MB android
1
ClassicRun 经典跑酷 我学习安卓的第一个作品。 从12年初(大二上学期)开始自学Java,12年9月份(大二下学期)开始自学Android,然后历时近三个月,在一边学一边写中完成了这个用SurfaceView写的跑酷游戏。 同时拿这个作品参加了2013年的谷歌安卓第四届大学生挑战赛,获得了西北地区二等奖,全国优秀奖。 Google Android挑战赛:http://www.google.cn/university/androidchallenge/2013/ 游戏简略视频:http://bcs.duapp.com/runrect/runrect.mp4 游戏性自我感觉还好,但是因为是早期作品,还有很多不足。
2022-05-30 22:45:32 1.29MB Android代码
1
package xatu.cn.androidtest_one; import android.content.ContentResolver; import android.content.Intent; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.net.Uri; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.util.Log; import android.view.View; import android.widget.Button; import android.widget.ImageView; import java.io.FileNotFoundException; /* 从手机相册中选择一幅图片并显示在屏幕上 */ public class MainActivity extends AppCompatActivity { private Button btn_choose; private ImageView img_show; private final int REQUEST_PICTURE_CHOOSE = 1; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); init(); event(); } private void init() { btn_choose = findViewById(R.id.btn_choose_picture); img_show = findViewById(R.id.imgview_src); } private void event() { btn_choose.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Intent intent = new Intent(); intent.setType("image/*"); intent.setAction(Intent.ACTION_PICK); startActivityForResult(intent, REQUEST_PICTURE_CHOOSE); } }); } @Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { if (resultCode == RESULT_OK){ Uri uri = data.getData(); Log.e("uri", uri.toString()); ContentResolver cr = this.getContentResolver(); try { Bitmap bitmap = BitmapFactory.decodeStream(cr.openInputStream(uri)); ImageView imageView = (ImageView) findViewById(R.id.imgview_src); /* 将Bitmap设定到ImageView */ imageView.setImageBitmap(bitmap); } catch (FileNotFoundException e) { e.printStackTrace(); } } super.onActivityResult(requestCode, resultCode, data); } } 页面布局代码: <?xml version="1.0" encoding="utf-8"?>
2022-05-28 13:50:21 2KB Android代码
1
QQ 仿安卓QQ 实现登录注册,加好友,聊天,动态等
2022-05-26 14:33:40 67.89MB Android代码
1
Android代码:蓝牙连接51单片机LED代码
2022-05-26 00:07:31 17.05MB Android 单片机
1