-
android诗词管理系统项目
因业务发展,现需要开发一款诗词赏析软件,此软件系统功能要求如下: u 首页功能(图 1) (1)、进入系统主界面 (2)、点击最下端的按钮,跳转到作品列表界面 u 显示作品列表功能(图 2) (1)、使用 Sqlite 数据存储,表结构见表 1 (2)、把从 Sqlite 中读出的数据显示在 listview 上 u 显示作品详细内容功能(图 3) (1)点击 listview 条目,跳转到显示作品内容的界面,并把解析的作品相关信息随 activity 跳转一起传递,按指定格式显示作品详细内容功能
- 2023-05-31 20:10:02下载
- 积分:1
-
ANDROID adt24
Android ADT24 基于eclipse,这是最终版本了,以后就是Android studio了
- 2022-01-26 06:28:46下载
- 积分:1
-
人脸识别(摄像头识别)android Studio 工程
人脸识别(摄像头识别)android Studio 工程,非常好用,希望对大家有所帮助!
- 2022-04-14 23:18:29下载
- 积分:1
-
android 底部tab签实例源码下载(Fragment实现)
android 底部tab签实例源码下载(Fragment实现)
- 2015-01-23下载
- 积分:1
-
ImgListView_tpxlfd
ListView头图片下拉放大效果在屏幕上按住下拉可以实现图片的放大,类似的效果可以在手机版的QQ空间看到,不过我没有想出这个例子图片放大可以应用的具体场景。(Listview head picture drop-down amplification effect in the screen hold down to achieve the picture enlarged. Similar effects can be seen in the mobile phone version of the QQ space, but I do not think this example picture amplification can be applied to the specific scene.)
- 2016-06-24 17:46:44下载
- 积分:1
-
chapter3
安卓教程的第一章学习源代码。简单的安卓小程序,适用于初学者。(Andrews tutorial to learn the source code. Simple Andrews applet, suitable for beginners.)
- 2012-10-09 14:35:01下载
- 积分:1
-
滑动菜单与片段
你好所有的这个项目是结合使用 android 应用程序片段的滑动菜单的初始屏幕,您可以使用您的编码是已经更改时代码片段,如果不是你太自以为是了别用这个,因为活动并非支持片段。
- 2022-10-26 23:00:03下载
- 积分:1
-
android Intent拨打电话、打开网页、选择图片例子
android Intent拨打电话、打开网页、选择图片例子
- 2015-06-18下载
- 积分:1
-
android 静态壁纸实例源码下载
一款还不错的静态壁纸代码 核心代码:package com.example.wallpaperchange;import android.os.Bundle;import android.app.Activity;import android.app.AlarmManager;import android.app.PendingIntent;import android.app.Service;import android.content.Intent;import android.view.View;import android.view.View.OnClickListener;import android.widget.Button;import android.widget.Toast; public class MainActivity extends Activity { AlarmManager aManager; Button start,stop; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); start = (Button)findViewById(R.id.start); stop = (Button)findViewById(R.id.stop); aManager = (AlarmManager)getSystemService(Service.ALARM_SERVICE); //指定ChangeService组件 Intent intent = new Intent(MainActivity.this,ChangeService.class); //创建PendingIntent对象 final PendingIntent pi = PendingIntent.getService( MainActivity.this, 0, intent, 0); start.setOnClickListener(new OnClickListener() { public void onClick(View v) { // TODO Auto-generated method stub aManager.setRepeating(AlarmManager.RTC_WAKEUP, 0, 5000, pi); start.setEnabled(false); stop.setEnabled(true); Toast.makeText(MainActivity.this, "壁纸定时更换启动成功", 5000).show(); } }); stop.setOnClickListener(new OnClickListener() { public void onClick(View v) { // TODO Auto-generated method stub start.setEnabled(true); stop.setEnabled(false); aManager.cancel(pi); } }); } }
- 2014-06-03下载
- 积分:1
-
android 点赞+1效果 例子源码下载
android 点赞+1效果 例子源码下载
- 2015-03-05下载
- 积分:1