Android 软件开发之 PreferenceActivity 中的组件

简介:

1.PreferenceActivity 介绍

PreferenceActivity 继承ListActivity 它是以一个列表的形式在展现内容,它最主要的特点是添加Preference可以让控件的状态持久化储存,举个例子 比如用户选中checkbox后 退出应用然后在进入应用,这时用户希望看到的是checkbox被选中,所以软件须要记录用户每次操作的过程并且持久储存,在进入应用的时候须要判断这些 久储存的数据然后将系统控件的状态呈现在UI中。
尤其是软件开发肯定会有一堆设置选项选项,每次进入Activity都去手动的去取储存的数据,这样代码会变得很复杂很麻烦。 这个时候Preference就出来了,它就是专门解决这些特殊的选项保存与读取的显示。用户每次操作事件它会及时的以键值对的形式记录在 SharedPreferences中,Activity每次启动它会自动帮我们完成数据的读取以及UI的显示。
android开发中一共为我们提供了4个组件,分别是CheckBoxPreference组件、EditTextPreference组件、 ListPreference组件、RingtonePreference组件,下面我用一个例子一一向同学们介绍一下。

2.CheckBoxPreference组件

CheckBoxPreference 选中为true 取消选中为false 它的值会以boolean的形式储存在SharedPreferences中。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<? xml  version = "1.0"  encoding = "utf-8" ?>
< PreferenceScreen
   xmlns:android = "http://schemas.android.com/apk/res/android" >
     < PreferenceCategory  android:title = "CheckBoxPreference" >  
     < CheckBoxPreference  android:key = "checkbox_0"
         android:title = "CheckBox_A"
         android:summary = "这是一个勾选框A"  >
     </ CheckBoxPreference >
  
     < CheckBoxPreference  android:key = "checkbox_1"
         android:title = "CheckBox_B"
         android:summary = "这是一个勾选框B"  >
     </ CheckBoxPreference >
     </ PreferenceCategory >
</ PreferenceScreen >

 

 

 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import  android.content.Context;
import  android.os.Bundle;
import  android.preference.CheckBoxPreference;
import  android.preference.Preference;
import  android.preference.PreferenceActivity;
import  android.preference.Preference.OnPreferenceChangeListener;
import  android.preference.Preference.OnPreferenceClickListener;
import  android.widget.Toast;
  
public  class  CheckBoxActivity extends  PreferenceActivity {
  
     Context mContext = null ;
     @Override
     protected  void  onCreate(Bundle savedInstanceState) {
     super .onCreate(savedInstanceState);
     // 从资源文件中添Preferences ,选择的值将会自动保存到SharePreferences
     addPreferencesFromResource(R.xml.checkbox);
  
     mContext = this ;
  
     //CheckBoxPreference组件
     CheckBoxPreference mCheckbox0 = (CheckBoxPreference) findPreference( "checkbox_0" );
     mCheckbox0.setOnPreferenceClickListener( new  OnPreferenceClickListener() {
  
         @Override
         public  boolean  onPreferenceClick(Preference preference) {
         //这里可以监听到这个CheckBox 的点击事件
         return  true ;
         }
     });
  
     mCheckbox0.setOnPreferenceChangeListener( new  OnPreferenceChangeListener() {
  
         @Override
         public  boolean  onPreferenceChange(Preference arg0, Object newValue) {
         //这里可以监听到checkBox中值是否改变了
         //并且可以拿到新改变的值
           Toast.makeText(mContext, "checkBox_0改变的值为"  +  (Boolean)newValue, Toast.LENGTH_LONG).show(); 
         return  true ;
         }
     });
  
     CheckBoxPreference mCheckbox1 = (CheckBoxPreference) findPreference( "checkbox_1" );
     mCheckbox1.setOnPreferenceClickListener( new  OnPreferenceClickListener() {
  
         @Override
         public  boolean  onPreferenceClick(Preference preference) {
         //这里可以监听到这个CheckBox 的点击事件
         return  true ;
         }
     });
  
     mCheckbox1.setOnPreferenceChangeListener( new  OnPreferenceChangeListener() {
  
         @Override
         public  boolean  onPreferenceChange(Preference arg0, Object newValue) {
         //这里可以监听到checkBox中值是否改变了
         //并且可以拿到新改变的值
           Toast.makeText(mContext, "checkBox_1改变的值为"  +  (Boolean)newValue, Toast.LENGTH_LONG).show(); 
         return  true ;
         }
     });
  
     }
  
}

 

3.EditTextPreference组件

EditTextPreference 点击后会弹出一个输入框,输入的内容会以字符串的的形式储存在SharedPreferences中。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<? xml  version = "1.0"  encoding = "utf-8" ?>
< PreferenceScreen
   xmlns:android = "http://schemas.android.com/apk/res/android" >
     < PreferenceCategory  android:title = "EditTextPreference" >  
     < EditTextPreference  android:key = "edit_0"
         android:title = "输入信息_A"
         android:summary = "请输入您的信息"
         android:defaultValue = "请输入信息"
         android:dialogTitle = "输入框" >
     </ EditTextPreference >
  
      < EditTextPreference  android:key = "edit_1"
         android:title = "输入信息_B"
         android:summary = "请输入您的信息"
         android:defaultValue = "请输入信息"
         android:dialogTitle = "输入框" >
     </ EditTextPreference >
     </ PreferenceCategory >
</ PreferenceScreen >

 

 

 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import  android.content.Context;
import  android.os.Bundle;
import  android.preference.EditTextPreference;
import  android.preference.PreferenceActivity;
  
public  class  EditTextActivity extends  PreferenceActivity {
  
     Context mContext = null ;
  
     @Override
     protected  void  onCreate(Bundle savedInstanceState) {
     super .onCreate(savedInstanceState);
     // 从资源文件中添Preferences ,选择的值将会自动保存到SharePreferences
     addPreferencesFromResource(R.xml.edittext);
  
     mContext = this ;
  
     // EditTextPreference组件
     EditTextPreference mEditText = (EditTextPreference) findPreference( "edit_0" );
  
     //设置dialog按钮信息
     mEditText.setPositiveButtonText( "确定" );
     mEditText.setNegativeButtonText( "取消" );
  
     //设置按钮图标
     mEditText.setDialogIcon(R.drawable.jay);
     }
  
  
}

 

4.ListPreference组件

在res/array中先写两个数组,一个用与list的显示内容,一个用户list的选中数值。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<? xml  version = "1.0"  encoding = "utf-8" ?>
< resources >
  
< string-array  name = "auto_logout_time_key" >
         < item >10 mins.</ item >
         < item >20 mins.</ item >
         < item >30 mins.</ item >
         < item >60 mins.</ item >
</ string-array >
  
< string-array  name = "auto_logout_time_value" >
         < item >600000</ item >
         < item >1200000</ item >
         < item >1800000</ item >
         < item >3600000</ item >
</ string-array >
</ resources >

 

 

ListPreference点击后会弹出一个列表框,选中后会将选中的内容(上面数组中的值)会以字符串的的形式储存在SharedPreferences中。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<? xml  version = "1.0"  encoding = "utf-8" ?>
< PreferenceScreen
   xmlns:android = "http://schemas.android.com/apk/res/android" >
   < PreferenceCategory  android:title = "ListPreference" >
         < ListPreference
             android:key = "list_0"
             android:title = "登录设置A"
             android:dialogTitle = "选择在线时间"
             android:entries = "@array/auto_logout_time_key"
             android:entryValues = "@array/auto_logout_time_value"  >
         </ ListPreference >
  
         < ListPreference
             android:key = "list_0"
             android:title = "登录设置A"
             android:dialogTitle = "选择在线时间"
             android:entries = "@array/auto_logout_time_key"
             android:entryValues = "@array/auto_logout_time_value"  >
         </ ListPreference >
     </ PreferenceCategory >
</ PreferenceScreen >

 

 

 

 

 

 

1
2
3
4
5
6
7
8
9
10
11
import  android.os.Bundle;
import  android.preference.PreferenceActivity;
  
public  class  ListActivity extends  PreferenceActivity {
     @Override
     protected  void  onCreate(Bundle savedInstanceState) {
     super .onCreate(savedInstanceState);
     // 从资源文件中添Preferences ,选择的值将会自动保存到SharePreferences
     addPreferencesFromResource(R.xml.list);
     }
}

 

5.RingtonePreference组件

RingtonePreference点击后会弹出一个系统铃声的列表框,选中后会将选中的内容(uri字符集)会以字符串的的形式储存在SharedPreferences中。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<? xml  version = "1.0"  encoding = "utf-8" ?>
< PreferenceScreen
   xmlns:android = "http://schemas.android.com/apk/res/android" >
  < PreferenceCategory  android:title = "RingtonePreference"
      < RingtonePreference 
          android:key = "ringtone_0" 
          android:summary = "选择系统铃声A" 
          android:title = "铃声设置" 
          android:ringtoneType = "all" 
          android:showSilent = "true"  ></ RingtonePreference >
  
     < RingtonePreference 
         android:key = "ringtone_!" 
         android:summary = "选择系统铃声B" 
         android:title = "铃声设置" 
         android:ringtoneType = "all" 
         android:showSilent = "true"  ></ RingtonePreference >
  
     </ PreferenceCategory >
</ PreferenceScreen >

 

 

 

android:ringtoneType 系统一共提供了4中响铃模式的类型分别为 铃声(ringtone) 通知( notification) 警告(alarm) 全部(all)

模拟器默认是没有铃声的,下图中的铃声我是将歌曲文件拷贝到SD卡中,设置铃声后才会出现的。如果觉得拷贝麻烦可以使用豌豆荚或者91助手将歌曲文件放入手机SD卡中,在铃声设置那里设置一下在这里就会出现。

 

 

 

1
2
3
4
5
6
7
8
9
10
11
import  android.os.Bundle;
import  android.preference.PreferenceActivity;
  
public  class  RingtoneActivity extends  PreferenceActivity {
     @Override
     protected  void  onCreate(Bundle savedInstanceState) {
     super .onCreate(savedInstanceState);
     // 从资源文件中添Preferences ,选择的值将会自动保存到SharePreferences
     addPreferencesFromResource(R.xml.ringtone);
     }
}

 

5.自定义控件

使用系统的控件在显示方面难免会有些单一,如果想做一个好看的界面就需要使用自定义Preference。下面我简单说明一下如何编写自定义Preference。首先在res/layout中添加preferences文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<? xml  version = "1.0"  encoding = "utf-8" ?>
< LinearLayout     xmlns:android = "http://schemas.android.com/apk/res/android"
     android:layout_width = "fill_parent"
     android:layout_height = "fill_parent"
     android:background = "#00000000" >
     < LinearLayout
         android:gravity = "center_vertical"
         android:background = "@drawable/preference_mid_background"
  
         android:layout_width = "fill_parent"
         android:layout_height = "wrap_content"
         >
         < ImageView
             android:focusable = "false"
             android:layout_width = "wrap_content"
             android:layout_height = "wrap_content"  android:src = "@drawable/setting_about_us" >
         </ ImageView >
         < RelativeLayout
             android:layout_width = "wrap_content"
             android:layout_height = "wrap_content"
             android:layout_marginLeft = "15dip"
             android:layout_marginTop = "6dip"
             android:layout_marginRight = "6dip"
             android:layout_marginBottom = "6dip"
             android:layout_weight = "1"
             >
             < TextView
                 android:textSize = "15dip"
                 android:textColor = "#000000"
                 android:ellipsize = "marquee"
                 android:id = "@+android:id/title"
                 android:fadingEdge = "horizontal"
                 android:layout_width = "wrap_content"
                 android:layout_height = "wrap_content"
                 android:singleLine = "true"
                 >
             </ TextView >
             < TextView
                 android:textAppearance = "?android:attr/textAppearanceSmall"
                 android:textColor = "#565656"
                 android:id = "@+android:id/summary"
                 android:layout_width = "wrap_content"
                 android:layout_height = "wrap_content"
                 android:maxLines = "4"
                 android:layout_below = "@+android:id/title"
                 android:layout_alignLeft = "@+android:id/title"
                 >
             </ TextView >
         </ RelativeLayout >
             < ImageView
                 android:focusable = "false"
                 android:layout_width = "wrap_content"
                 android:layout_height = "wrap_content"
                 android:background = "@drawable/preference_arrows" />
     </ LinearLayout >
</ LinearLayout >

 

 

 

android:background=”@drawable/preference_mid_background”
通过这一行可以设置这个按钮的点击、选中默认的显示状态,这样可以让你的按钮更加好看。须要在res/drawable中添加xml文件

android:state_facused :为控件选中显示
android:state_pressed:为控件按下显示
最后一个为默认显示

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<? xml  version = "1.0"  encoding = "utf-8" ?>
< selector
     xmlns:android = "http://schemas.android.com/apk/res/android" >
     < item
         android:state_focused = "true"
         android:drawable = "@drawable/preference_mid_pressed"
         >
     </ item >
     < item
         android:state_pressed = "true"
         android:drawable = "@drawable/preference_mid_pressed"
         >
     </ item >
     < item
  
         android:drawable = "@drawable/preference_mid"
         >
     </ item >
  
</ selector >

 

 

 

 

 

 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import  android.content.Context;
import  android.os.Bundle;
import  android.preference.Preference;
import  android.preference.PreferenceActivity;
import  android.preference.Preference.OnPreferenceClickListener;
import  android.widget.Toast;
  
public  class  AllActivity extends  PreferenceActivity {
  
     /**自定义布局A**/
     Preference preference0 = null ;
  
     /**自定义布局B**/
     Preference preference1 = null ;
  
     Context mContext = null ;
     @Override
     protected  void  onCreate(Bundle savedInstanceState) {
     super .onCreate(savedInstanceState);
     // 从资源文件中添Preferences ,选择的值将会自动保存到SharePreferences
     addPreferencesFromResource(R.xml.all);
     mContext = this ;
  
     preference0 = findPreference( "pref_key_0" );
  
     preference0.setOnPreferenceClickListener( new  OnPreferenceClickListener() {
  
         @Override
         public  boolean  onPreferenceClick(Preference preference) {
           Toast.makeText(mContext, "自定义布局A被按下" , Toast.LENGTH_LONG).show(); 
         return  false ;
         }
     });
     preference1 = findPreference( "pref_key_1" );
  
     preference1.setOnPreferenceClickListener( new  OnPreferenceClickListener() {
  
         @Override
         public  boolean  onPreferenceClick(Preference preference) {
           Toast.makeText(mContext, "自定义布局B被按下" , Toast.LENGTH_LONG).show(); 
         return  false ;
         }
     });
     }
}

 

读取数据

在PreferenceActivity中可以用下面这种方式拿到SharedPreferences中储存的数值,通过 PreferenceManager.getDefaultSharedPreferences(this) 方法拿到控件默认储存的sharedPreferences对象。

1
2
SharedPreferences prefs =PreferenceManager.getDefaultSharedPreferences( this ) ;
     boolean  something = prefs.getBoolean( "something" , false );

 

 

在模拟起中将SharedPreferences储存内容拷贝出来后,可以清楚的看到通过点击系统控件储存的数值。这里我说一下铃声的储存,它是以一个字符串形式的uri字符集,它所指向的是系统铃声储存的路径。所以根据这个字符集就可以找到这个铃声。

1
2
3
4
5
6
7
8
9
10
11
12
<? xml  version = '1.0'  encoding = 'utf-8'  standalone = 'yes'  ?>
< map >
< string  name = "ringtone_!" >content://media/external/audio/media/1</ string >
< string  name = "ringtone_0" >content://media/external/audio/media/1</ string >
< string  name = "list_0" >1800000</ string >
< string  name = "edit_1" >请输入信息1212</ string >
< string  name = "list" >1200000</ string >
< string  name = "ringtone" >content://settings/system/ringtone</ string >
< boolean  name = "checkbox_0"  value = "true"  />
< boolean  name = "checkbox_1"  value = "true"  />
< string  name = "edit_0" >请输入信息</ string >
</ map >

 


本文转自农夫山泉别墅博客园博客,原文链接:http://www.cnblogs.com/yaowen/p/4991762.html,如需转载请自行联系原作者


相关文章
|
3月前
|
XML 搜索推荐 前端开发
安卓开发中的自定义视图:打造个性化UI组件
在安卓应用开发中,自定义视图是一种强大的工具,它允许开发者创造独一无二的用户界面元素,从而提升应用的外观和用户体验。本文将通过一个简单的自定义视图示例,引导你了解如何在安卓项目中实现自定义组件,并探讨其背后的技术原理。我们将从基础的View类讲起,逐步深入到绘图、事件处理以及性能优化等方面。无论你是初学者还是有经验的开发者,这篇文章都将为你提供有价值的见解和技巧。
|
4月前
|
搜索推荐 Android开发 开发者
探索安卓开发中的自定义视图:打造个性化UI组件
【10月更文挑战第39天】在安卓开发的世界中,自定义视图是实现独特界面设计的关键。本文将引导你理解自定义视图的概念、创建流程,以及如何通过它们增强应用的用户体验。我们将从基础出发,逐步深入,最终让你能够自信地设计和实现专属的UI组件。
|
5月前
|
存储 Android开发 开发者
深入理解安卓应用开发的核心组件
【10月更文挑战第8天】探索Android应用开发的精髓,本文带你了解安卓核心组件的奥秘,包括Activity、Service、BroadcastReceiver和ContentProvider。我们将通过代码示例,揭示这些组件如何协同工作,构建出功能强大且响应迅速的应用程序。无论你是初学者还是资深开发者,这篇文章都将为你提供新的视角和深度知识。
|
5月前
|
数据可视化 Android开发 开发者
安卓应用开发中的自定义View组件
【10月更文挑战第5天】在安卓应用开发中,自定义View组件是提升用户交互体验的利器。本篇将深入探讨如何从零开始创建自定义View,包括设计理念、实现步骤以及性能优化技巧,帮助开发者打造流畅且富有创意的用户界面。
172 0
|
5月前
|
XML 前端开发 Java
安卓应用开发中的自定义View组件
【10月更文挑战第5天】自定义View是安卓应用开发的一块基石,它为开发者提供了无限的可能。通过掌握其原理和实现方法,可以创造出既美观又实用的用户界面。本文将引导你了解自定义View的创建过程,包括绘制技巧、事件处理以及性能优化等关键步骤。
|
5月前
|
测试技术 数据库 Android开发
深入解析Android架构组件——Jetpack的使用与实践
本文旨在探讨谷歌推出的Android架构组件——Jetpack,在现代Android开发中的应用。Jetpack作为一系列库和工具的集合,旨在帮助开发者更轻松地编写出健壮、可维护且性能优异的应用。通过详细解析各个组件如Lifecycle、ViewModel、LiveData等,我们将了解其原理和使用场景,并结合实例展示如何在实际项目中应用这些组件,提升开发效率和应用质量。
101 6
|
6月前
|
存储 开发框架 数据可视化
深入解析Android应用开发中的四大核心组件
本文将探讨Android开发中的四大核心组件——Activity、Service、BroadcastReceiver和ContentProvider。我们将深入了解每个组件的定义、作用、使用方法及它们之间的交互方式,以帮助开发者更好地理解和应用这些组件,提升Android应用开发的能力和效率。
434 5
|
6月前
|
缓存 搜索推荐 Android开发
安卓应用开发中的自定义View组件实践
【9月更文挑战第10天】在安卓开发领域,自定义View是提升用户体验和实现界面个性化的重要手段。本文将通过一个实际案例,展示如何在安卓项目中创建和使用自定义View组件,包括设计思路、实现步骤以及可能遇到的问题和解决方案。文章不仅提供了代码示例,还深入探讨了自定义View的性能优化技巧,旨在帮助开发者更好地掌握这一技能。
|
7月前
|
XML 搜索推荐 Android开发
安卓开发中的自定义View组件实践
【8月更文挑战第30天】探索Android世界,自定义View是提升应用界面的关键。本文以简洁的语言带你了解如何创建自定义View,从基础到高级技巧,一步步打造个性化的UI组件。
|
7月前
|
存储 搜索推荐 Java
探索安卓开发中的自定义视图:打造个性化UI组件Java中的异常处理:从基础到高级
【8月更文挑战第29天】在安卓应用的海洋中,一个独特的用户界面(UI)能让应用脱颖而出。自定义视图是实现这一目标的强大工具。本文将通过一个简单的自定义计数器视图示例,展示如何从零开始创建一个具有独特风格和功能的安卓UI组件,并讨论在此过程中涉及的设计原则、性能优化和兼容性问题。准备好让你的应用与众不同了吗?让我们开始吧!

热门文章

最新文章

  • 1
    Android历史版本与APK文件结构
  • 2
    【01】噩梦终结flutter配安卓android鸿蒙harmonyOS 以及next调试环境配鸿蒙和ios真机调试环境-flutter项目安卓环境配置-gradle-agp-ndkVersion模拟器运行真机测试环境-本地环境搭建-如何快速搭建android本地运行环境-优雅草卓伊凡-很多人在这步就被难倒了
  • 3
    【03】仿站技术之python技术,看完学会再也不用去购买收费工具了-修改整体页面做好安卓下载发给客户-并且开始提交网站公安备案-作为APP下载落地页文娱产品一定要备案-包括安卓android下载(简单)-ios苹果plist下载(稍微麻烦一丢丢)-优雅草卓伊凡
  • 4
    【01】仿站技术之python技术,看完学会再也不用去购买收费工具了-用python扒一个app下载落地页-包括安卓android下载(简单)-ios苹果plist下载(稍微麻烦一丢丢)-客户的麻将软件需要下载落地页并且要做搜索引擎推广-本文用python语言快速开发爬取落地页下载-优雅草卓伊凡
  • 5
    【03】微信支付商户申请下户到配置完整流程-微信开放平台创建APP应用-填写上传基础资料-生成安卓证书-获取Apk签名-申请+配置完整流程-优雅草卓伊凡
  • 6
    【02】仿站技术之python技术,看完学会再也不用去购买收费工具了-本次找了小影-感觉页面很好看-本次是爬取vue需要用到Puppeteer库用node.js扒一个app下载落地页-包括安卓android下载(简单)-ios苹果plist下载(稍微麻烦一丢丢)-优雅草卓伊凡
  • 7
    Cellebrite UFED 4PC 7.71 (Windows) - Android 和 iOS 移动设备取证软件
  • 8
    escrcpy:【技术党必看】Android开发,Escrcpy 让你无线投屏新体验!图形界面掌控 Android,30-120fps 超流畅!🔥
  • 9
    Android实战经验之Kotlin中快速实现MVI架构
  • 10
    即时通讯安全篇(一):正确地理解和使用Android端加密算法
  • 1
    【03】微信支付商户申请下户到配置完整流程-微信开放平台创建APP应用-填写上传基础资料-生成安卓证书-获取Apk签名-申请+配置完整流程-优雅草卓伊凡
    66
  • 2
    android FragmentManager 删除所有Fragment 重建
    26
  • 3
    Android实战经验之Kotlin中快速实现MVI架构
    42
  • 4
    即时通讯安全篇(一):正确地理解和使用Android端加密算法
    42
  • 5
    escrcpy:【技术党必看】Android开发,Escrcpy 让你无线投屏新体验!图形界面掌控 Android,30-120fps 超流畅!🔥
    46
  • 6
    【01】噩梦终结flutter配安卓android鸿蒙harmonyOS 以及next调试环境配鸿蒙和ios真机调试环境-flutter项目安卓环境配置-gradle-agp-ndkVersion模拟器运行真机测试环境-本地环境搭建-如何快速搭建android本地运行环境-优雅草卓伊凡-很多人在这步就被难倒了
    161
  • 7
    Cellebrite UFED 4PC 7.71 (Windows) - Android 和 iOS 移动设备取证软件
    55
  • 8
    【03】仿站技术之python技术,看完学会再也不用去购买收费工具了-修改整体页面做好安卓下载发给客户-并且开始提交网站公安备案-作为APP下载落地页文娱产品一定要备案-包括安卓android下载(简单)-ios苹果plist下载(稍微麻烦一丢丢)-优雅草卓伊凡
    73
  • 9
    Android历史版本与APK文件结构
    183
  • 10
    【02】仿站技术之python技术,看完学会再也不用去购买收费工具了-本次找了小影-感觉页面很好看-本次是爬取vue需要用到Puppeteer库用node.js扒一个app下载落地页-包括安卓android下载(简单)-ios苹果plist下载(稍微麻烦一丢丢)-优雅草卓伊凡
    54