Android报告.docx

  1. 1、本文档共10页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Android报告精要

Android开发报告学号:140206400025姓名:赵轩专业班级:14级计算机应用技术1班实验目的:充分掌握android开发中的各项技术,并会使用android的api实验环境: android studio2.1.2API 23实验功能:用户登陆,强制下线基本原理:使用广播功能对用户进行强制下线,使用SharedPreferences对面账号密码进行保存,实现记住密码的功能。运行截图:登陆时选择记住密码并登陆点击强制下线然后点击ok发现主页面账号密码已经自动填写上去了代码如下:登陆布局login.xml?xml version=1.0 encoding=utf-8?TableLayout xmlns:android=/apk/res/androidandroid:layout_width=match_parentandroid:layout_height=match_parentandroid:stretchColumns=1 TableRow TextViewandroid:layout_height=wrap_contentandroid:text=账号:/ EditTextandroid:id=@+id/accountandroid:layout_height=wrap_content/ /TableRow TableRow TextViewandroid:layout_height=wrap_contentandroid:text=密码:/ EditTextandroid:id=@+id/passwordandroid:layout_height=wrap_contentandroid:inputType=textPassword/ /TableRow TableRow CheckBoxandroid:id=@+id/remember_passandroid:layout_height=wrap_content/ TextViewandroid:text=记住密码android:layout_height=wrap_content/ /TableRow TableRow Buttonandroid:id=@+id/loginandroid:layout_height=wrap_contentandroid:layout_span=2android:text=登陆/ /TableRow/TableLayout强制下线页面布局activity_main.xml?xml version=1.0 encoding=utf-8?LinearLayout xmlns:android=/apk/res/androidandroid:orientation=vertical android:layout_width=match_parentandroid:layout_height=match_parentButtonandroid:id=@+id/force_offlineandroid:layout_width=match_parentandroid:layout_height=wrap_contentandroid:text=发送强制离线广播//LinearLayout创建一个ActivityCollecotr类用于管理所有的活动ActivityCollector.kavapackage com.example.hhhhhhh.broadcastpractice;import android.app.Activity;import java.util.ArrayList;import java.util.List;public class ActivityCollector {public static ListActivity activities=new ArrayListActivity();public static void addActivity(Activity activity){activities.add(activity); }public static void removeActivity(Activity activity){activities.remove(activity); }public static void finishAll(){for (Activity activity:activities){if (!activity.isFinishing()){ activity.finish()

文档评论(0)

1520520 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档