当前位置: 编程技术>移动开发
本页文章导读:
▪Androkd开发坏境配备以及常用插件 Androkd开发坏境配置以及常用插件
步骤:1、安装jdk,并配置环境变量2、解压android-sdk-windows-1.5_r2,并配置环境变量:path=D:\eclipse\android\android-sdk-windows-1.5_r2\tools3、adt在线安装:help-Install New.........
▪ 格局管理-LinearLayout 布局管理-LinearLayout
如下的布局文件,粗体部分省略,会导致显示的界面只有第一个textView组件,之后的都不会显示。<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas..........
▪ 【6.21】PreferenceActivity回设置setting菜单 【6.21】PreferenceActivity来设置setting菜单
Shared Preferences可以存储一些程序的参数设置,而且不用存储操作,所以用来保存程序的设置参数再合适不过了
设置菜单有专门的xml,首先新建一个P.........
[1]Androkd开发坏境配备以及常用插件
来源: 互联网 发布时间: 2014-02-18
Androkd开发坏境配置以及常用插件
步骤:
1、安装jdk,并配置环境变量
2、解压android-sdk-windows-1.5_r2,并配置环境变量:path=D:\eclipse\android\android-sdk-windows-1.5_r2\tools
3、adt在线安装:help-Install New SoftWare: https://dl-ssl.google.com/android/eclipse/
取名android,安装完后在在首选项里会出现android项目,点击浏览按钮指定到android-sdk-windows-1.5_r2的根目录
4、svn在线安装:help-Install New SoftWare: http://subclipse.tigris.org/update
常用插件:
版本控制工具:svn - http://subclipse.tigris.org/update
反编译插件:Decompiler - http://java.decompiler.free.fr/jd-eclipse/update
模型分析工具:ModelGoon
内存溢出分析工具:Memory Analysis Tool
步骤:
1、安装jdk,并配置环境变量
2、解压android-sdk-windows-1.5_r2,并配置环境变量:path=D:\eclipse\android\android-sdk-windows-1.5_r2\tools
3、adt在线安装:help-Install New SoftWare: https://dl-ssl.google.com/android/eclipse/
取名android,安装完后在在首选项里会出现android项目,点击浏览按钮指定到android-sdk-windows-1.5_r2的根目录
4、svn在线安装:help-Install New SoftWare: http://subclipse.tigris.org/update
常用插件:
版本控制工具:svn - http://subclipse.tigris.org/update
反编译插件:Decompiler - http://java.decompiler.free.fr/jd-eclipse/update
模型分析工具:ModelGoon
内存溢出分析工具:Memory Analysis Tool
[2] 格局管理-LinearLayout
来源: 互联网 发布时间: 2014-02-18
布局管理-LinearLayout
如下的布局文件,粗体部分省略,会导致显示的界面只有第一个textView组件,之后的都不会显示。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/option_menu_comment"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/context_menu_comment"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/sub_menu_comment"
/>
</LinearLayout>
如下的布局文件,粗体部分省略,会导致显示的界面只有第一个textView组件,之后的都不会显示。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/option_menu_comment"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/context_menu_comment"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/sub_menu_comment"
/>
</LinearLayout>
[3] 【6.21】PreferenceActivity回设置setting菜单
来源: 互联网 发布时间: 2014-02-18
【6.21】PreferenceActivity来设置setting菜单
Shared Preferences可以存储一些程序的参数设置,而且不用存储操作,所以用来保存程序的设置参数再合适不过了
设置菜单有专门的xml,首先新建一个PreferenceScreen类别的xml,在src-xml路径下
用PreferenceCategory来分类,android:title来写标题
控件包括CheckBoxPreference、EditTextPreference、ListPreference、RingTonePreference,(太少可以重写)最重要的是android:key这个属性,key在程序里唯一,是存储寻找数据的标记
新建类继承自PreferenceActivity,用addPreferencesFromResource(R.xml.setting)来绑定资源
接下来的操作和普通的Shared Preferences相同
最新技术文章: