-
Android执行linux命令的源代码
Android实现用代码来执行linux命令,本源码用eclispe编译通过,方便初学者快速掌握linux命令调用方法
- 2023-04-11 14:30:04下载
- 积分:1
-
android 下拉刷新,上拉加载,完美框架
PullToRefreshDemo下拉刷新,上拉加载
- 2014-10-11下载
- 积分:1
-
mvvm
mvvm模式,使用泛型的方式,避免创建多个接口
- 2023-06-06 01:05:03下载
- 积分:1
-
AndroidPdfViewerPDF查看器
AndroidPdfViewerPDF查看器
- 2015-09-07下载
- 积分:1
-
resource
使用App Inventor开发会说话的Tom猫所需音频视频素材.(Use App Inventor to develop audio and video materials for talking Tom cats.)
- 2018-05-16 10:13:20下载
- 积分:1
-
显示一张图片
显示一张图片,具体要更改src和添加资源文件,首先得熟悉android模拟器avd的运行,还得了解Activity的生命周期,另外了解如何加载布局,设计布局。了解其中的控件的使用和属性设置。虽然看似很简单,但是第一次做的话,可能会遇到各种问题,需要耐心点
- 2022-03-13 13:06:18下载
- 积分:1
-
Androidtelnetloading
带Loading效果的Android远程登录代码+实例,用于在后台请求服务器是否登录成功,返回[0]登录状态,[1]是否网络错误。代码中可以学习到许多Android编程的小技巧,比如弹出对话框、初始化注册view组件、清空监听按钮、检查注册表单(Loading effect the Android remote login code+ instance, is used to request the server in the background, whether the login is successful, return [0] logged in [1] is a network error. Code can learn many Android programming tips, such as pop-up dialog box, initialize the registration view components, empty the monitoring button, check the registration form)
- 2013-04-18 11:28:15下载
- 积分:1
-
萌萌哒社区源码android
萌萌哒社区源码
- 2023-01-16 16:20:03下载
- 积分:1
-
聚会易应用(LBS)
通过向朋友发起聚会邀请,组织聚会的客户端。
涉及到地图、定位、短信、通讯录、云服务器通讯等方面。
未经许可,不能用于商业用途
- 2022-08-17 04:43:16下载
- 积分:1
-
Fragment消息的交互
package com.fragment.demo3;import android.app.Fragment;import android.os.Bundle;import android.view.LayoutInflater;import android.view.View;import android.view.ViewGroup;import android.widget.TextView;public class Fragment2 extends Fragment {private TextView text;@Overridepublic View onCreateView(LayoutInflater inflater, ViewGroup container,Bundle savedInstanceState) {View view = inflater.inflate(R.layout.fragment2, null);text = (TextView) view.findViewById(R.id.textView1);return view;}public void setText(String setText) {text.setText(setText);}}
- 2015-10-25下载
- 积分:1