(转)android技巧01:Preferencescreen中利用intent跳转activity

原文连接:http://blog.csdn.net/xianming01/article/details/7543464

 

设置中的Preferencescreen不仅可以作为设置界面显示,而且还能够启动activity,下面主要是对启动activity的介绍
1. Preferencescreen中启动activity

例如wireless_setting.xml中有如下片段

 

[html] view plaincopy
  1. <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"  
  2. xmlns:settings="http://schemas.android.com/apk/res/com.seedshope.android">  
  3.     <PreferenceScreen  
  4.         android:key="wifi_settings"  
  5.         android:title="@string/wifi_settings"  
  6.         android:summary="@string/wifi_settings_summary" >  
  7.         <intent  
  8.             android:action="android.intent.action.MAIN"  
  9.             android:targetPackage="com.android.settings"  
  10.             android:targetClass="com.android.settings.wifi.WifiSettings" />  
  11.     </PreferenceScreen>  
  12. </PreferenceScreen>  

        其中com.android.settings是工程的包名,com.android.settings.wifi.WifiSettings是要启动的类。另外,xmlns:settings这一项没有也是可以的(那它的作用是什么?)。
        一般情况下,这样就ok了,点击对应的Preference就能够启动对应的activity,然而仅仅这样有时这样,并不一定能够启动对应的activity,因为它与回调函数onPreferenceTreeClick有关,有时候我们会重写这个方法如:

 

 

[java] view plaincopy
  1. public boolean onPreferenceTreeClick(PreferenceScreen preferenceScreen, Preference preference) {  
  2.        if ( (preference == mAirplaneModePreference) &&  
  3.                 (Boolean.parseBoolean(  
  4.                     SystemProperties.get(TelephonyProperties.PROPERTY_INECM_MODE))) ) {  
  5.             // In ECM mode launch ECM app dialog  
  6.            startActivityForResult(  
  7.                 new Intent(TelephonyIntents.ACTION_SHOW_NOTICE_ECM_BLOCK_OTHERS, null),  
  8.                 REQUEST_CODE_EXIT_ECM);  
  9.             return true;  
  10.         }  
  11.         else {  
  12.             // Let the intents be launched by the Preference manager  
  13.             return false;  
  14.        }  
  15.     }  

        其中WirelessSetting.java中有如上函数,当返回值为true时,你怎么点击Preference都不会跳转到activity的,只有等到它的返回值为false的时候,才可以正常跳转,因为点击某一个Preference的真正实现在Preference.java的performClick函数中如下:

 

 

[java] view plaincopy
    1. void performClick(PreferenceScreen preferenceScreen) {  
    2.           
    3.         if (!isEnabled()) {  
    4.             return;  
    5.         }  
    6.           
    7.         onClick();  
    8.           
    9.         if (mOnClickListener != null && mOnClickListener.onPreferenceClick(this)) {  
    10.             return;  
    11.         }  
    12.           
    13.         PreferenceManager preferenceManager = getPreferenceManager();  
    14.         if (preferenceManager != null) {  
    15.             PreferenceManager.OnPreferenceTreeClickListener listener = preferenceManager  
    16.                     .getOnPreferenceTreeClickListener();  
    17.             if (preferenceScreen != null && listener != null  
    18.                     && listener.onPreferenceTreeClick(preferenceScreen, this)) {  
    19.                 return;  
    20.             }  
    21.         }  
    22.           
    23.         if (mIntent != null) {  
    24.             Context context = getContext();  
    25.             context.startActivity(mIntent);  
    26.         }  
    27.     }  

转载于:https://www.cnblogs.com/lovers/articles/2679856.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/274612.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Vue 2.7 正式发布,代号为 Naruto

大家好&#xff0c;我是若川。持续组织了近一年的源码共读活动&#xff0c;感兴趣的可以 点此加我微信ruochuan12 参与&#xff0c;每周大家一起学习200行左右的源码&#xff0c;共同进步。同时极力推荐订阅我写的《学习源码整体架构系列》 包含20余篇源码文章。历史面试系列。…

js设置css色相旋转_色相旋转颜色方案是否保留了对色盲友好的能力?

js设置css色相旋转Hue rotation is often an easy way to change the appearance of a plot or figure without the need to create a new colour bar. However, when dealing with colourblindness, it is important to ensure that the spacing between colours is sufficien…

Tyvj 1921 Freda的烦恼

我就不说是CF hot days 原题了&#xff0c;我会告诉你使用Math库是因为一开始偷懒不想写Min函数么- 1 Uses math;2 Var n,m,i,t,tt,x,cost,ans,tmp:qword;3 Function min(x,y:qword):qword;4 Begin5 if x>y then exit(y);6 exit(x);7 end;8 Begin9 readln(n,m);10 …

ux设计中的各种地图_在UX设计中使用阿拉伯语

ux设计中的各种地图Last year I got to work on an app that was ultimately going to be deployed globally in every market and every language including RTL (Right-to-Left) languages — with a specific focus on Arabic.去年&#xff0c;我开始致力于开发一个应用程序…

如何为前端项目一键自动添加eslint和prettier的支持

本文来自读者那个曾经的少年回来了 写的源码共读35期笔记文章&#xff0c;授权投稿&#xff0c;写的真好。本文参加了由公众号若川视野 发起的每周源码共读活动&#xff0c;点此加我微信 ruochuan12 了解详情一起参与。本文属于源码共读第35期 | 为 vite 项目自动添加 eslint 和…

Server.Transfer方法在页面间传值

a.aspx页面代码&#xff1a; protected void Button5_Click(object sender, EventArgs e){Server.Transfer("b.aspx");}public string name{get{return this.TextBox1.Text;}} b.aspx页面代码&#xff1a; private void TheFour(){a newWebContext.Handler as a;//创…

极端原理_为极端而设计

极端原理*You can also read this article in German here.*您也可以 在此处 阅读 德语文章 。 In this article I’m going to draw on the Design thinking concept of designing for extreme users and I will argue that designing for extreme users can be considered a…

当CV工程师碰到了拷贝粘贴的需求——useClipboard的使用及源码解析

大家好&#xff0c;我是若川。持续组织了近一年的源码共读活动&#xff0c;感兴趣的可以 点此加我微信ruochuan12 参与&#xff0c;每周大家一起学习200行左右的源码&#xff0c;共同进步。同时极力推荐订阅我写的《学习源码整体架构系列》 包含20余篇源码文章。历史面试系列。…

centos利用tar包安装phpmyadmin

我的网站根目录地址为/var/www/html&#xff0c;phpmyadmin安装包在/tmp下。 注意&#xff1a;php版本低于5.1的建议安装phpmyadmin2.11&#xff0c;因为phpmyadmin3.3对php版本的最低要求是php5.2 1 [rootCentOS ~]# tar -zxvf /tmp/phpMyAdmin-2.11.9-all-languages.tar.gz …

ux和ui_从UI切换到UX设计

ux和uiI still remember those days, when I was a soon-to-be graphic design graduate who started to question what my future will be. At that time, I realized that I loved graphic design, but I wasn’t sure if I enjoyed doing it. Creating logos, posters, broc…

春季招聘后前端工程师的就业指南

尽管疫情反复&#xff0c;大厂裁员&#xff0c;招聘季仍是在困难中有条不紊地落下了尾声。回顾今年的春季招聘&#xff0c;北京青年报记者发现&#xff0c;互联网“大厂”依然对“研发岗”需求最为旺盛。但许多企业最近都在围绕“降本提效”来进行业务调整&#xff0c;这对技术…

探索式测试的思维模型

上一章介绍了探索式测试的定义。在实际项目的测试执行过程中&#xff0c;读者是否曾遇到如下的几个现象&#xff1a; 测试人员按照一个测试用例来执行测试&#xff0c;得到的程序输出与预期输出不一致。 测试人员判断程序的行为并不是缺陷&#xff0c;但根据新的输出想到了新的…

图解Git分支和命令

大家好&#xff0c;我是若川。持续组织了近一年的源码共读活动&#xff0c;感兴趣的可以 点此加我微信ruochuan12 参与&#xff0c;每周大家一起学习200行左右的源码&#xff0c;共同进步。同时极力推荐订阅我写的《学习源码整体架构系列》 包含20余篇源码文章。历史面试系列。…

vsco_VSCO重新设计:更直观,更简化的界面

vscoAmong the many photo-editing apps, VSCO has definitely become a popular favorite among both experienced photographers as well as “aesthetic” Instagram users. However, my interaction with the app starts and ends with using a few key filters and (maybe…

不同长度数据项的排序

注&#xff1a;本文改编自windmissing博客&#xff0c;感谢作者整理&#xff01; 题目&#xff1a; a)给定一个整数数组&#xff0c;其中不同的整数中包含的数字个数可能不同&#xff0c;但是该数组中&#xff0c;所有整数中总的数字数为n。说明如何在O(n)时间内对该数组进行排…

浅谈前端埋点监控

大家好&#xff0c;我是若川。持续组织了近一年的源码共读活动&#xff0c;感兴趣的可以 加我微信lxchuan12 参与&#xff0c;每周大家一起学习200行左右的源码&#xff0c;共同进步。同时极力推荐订阅我写的《学习源码整体架构系列》 包含20余篇源码文章。历史面试系列。另外&…

css版式_第2部分:使版式具有响应能力,并为以后的版本奠定基础

css版式The feedback I’ve received over the past week has been amazing, and matches my own excitement about this project. I’ve spent a lot of time researching, writing, and teaching about creating better typography for reading on digital devices over the …

BBS项目--登录

BBS阶段性测试总要求 django登录报错 Error: [WinError 10013] 以一种访问权限不允许的方式做了一个访问套接字的尝试。 原因分析&#xff1a;出现这种情况在Windows中很常见&#xff0c;就是端口被占用 解决措施&#xff1a;这时我们只需改一下端口便可以了 登录前端页面(HTML…

【声明】

我的公众号和朋友圈有时会有一些课程推广广告&#xff0c;微博的收入来源。我接的广告一般来说都是比自己去买会优惠不少&#xff0c;我也会想方设法争取到更多福利&#xff08;优惠&#xff09;。买过的都知道确实优惠。如果有人看到觉得不合适&#xff0c;不想看到&#xff0…

Win7 访问共享时输入正确密码仍然提示密码错误

1、直接按下winr键&#xff0c;输入secpol.msc&#xff0c;打开本地安全策略。 2、找到“安全设置”的“本地策略”的“安全选项” 3、在右边一栏找到“网络安全&#xff1a;LAN管理器身份验证级别”&#xff0c;双击进入 4、在默认状态选项下&#xff0c;英文版应该为"no…