Android开发步骤

一、在 Windows 下搭建 Android 开发环境

1、安装 JDK(Java Development Kit)

http://download.java.net/jdk6/

 

2、安装Android SDK

http://developer.android.com/sdk

 

3、安装Eclipse

http://www.eclipse.org/

 

4、打开Eclipse ,并安装其 Android 插件(ADT)

打开菜单 "Help" -> "Install New Software",在 "Availabe Software" 中加入地址 http://dl-ssl.google.com/android/eclipse/,然后安装 ADT(AndroidDevelopment Tools)

 

5、新建Android 项目

"New" ->Android Project,Project Name - 项目名称;Build Target - 编译项目的 SDK 版本;Application name - 程序名称;Package name - 包名;Min SDK Version - 程序所支持的最低 SDK 版本代号(2 对应 1.1,3 对应 1.5,4 对应 1.6)

 

6、运行Android 项目

打开菜单 "Run" -> "Run Configurations"-> New launch configuration,设置启动项目名称,在 Android 选项卡中选择启动项目,在 Target 选项卡中设置模拟器

 

7、创建/使用模拟 SD 卡

创建 SD 卡,运行类似如下命令:mksdcard -l sdcard 512Md:\android\sdcard.img

模拟器中使用 SD 卡,在项目配置的 Target 选项卡的 "Additional Emulator Command LineOptions" 框中输入类似如下参数:-sdcard d:\android\sdcard.img

 

8、配置模拟器

运行类似如下命令:android create avd --name android15 --target 2。或者直接在菜单 "Window" -> "AndroidAVD Manager" 中配置模拟器

 

9、浏览模拟 SD 卡中的内容

调试程序,在 DDMS 中选择 "File Explorer" ,在其中的 sdcard 目录下就是模拟 SD 卡中的内容

 

10、查看日志LogCat

Window -> ShowView -> Other -> Android -> LogCat

 

11、在模拟器中安装/卸载 apk

安装 apk 运行类似如下命令:adb install name.apk;卸载 apk 运行类似如下命令:adb uninstall packagename(注:这里的参数是需要卸载的包名)

 

12、反编译Android 程序

解压 apk 文件,取出其中的 classes.dex 文件,运行类似如下命令:dexdump.exe -d classes.dex > dump.txt(其意思是将 classes.dex dump 出来,并将反编译后的代码保存到指定的文本文件中)

 

13、人品不好是出现的某些错误的解决办法

如果出现类似如下的错误等

no classfiles specified

Conversion to Dalvikformat failed with error 1

解决办法:Project -> Clean

出现 Android SDK Content Loader 60% (一直卡在 60%)

解决办法:Project -> 去掉 Build Automatically 前面的勾

 

14、查看 SDK 源代码

先想办法搞到源代码,如这个地址 http://www.digginmobile.com/android.asp ,然后将其解压到 SDK 根路径下的 sources 文件夹内即可

 


二、Android 项目的目录结构

1、src - 用于放置源程序

2、gen - 自动生成 R.java 文件,用于引用资源文件(即 res 目录下的数据)

3、assets - 用于放置原始文件,Android 不会对此目录下的文件做任何处理,这是其与 res 目录不同的地方

4、res/drawable - 用于放置图片之类的资源;res/layout - 用于放置布局用的 xml 文件;res/values - 用于放置一些常量数据

5、AndroidManifest.xml - Android 程序的清单文件,相当于配置文件,配置应用程序名称、图标、Activity、Service、Receiver等

 


三、Hello World 程序

1、res/layout/main.xml

 代码

<?xml version="1.0" encoding="utf-8"?>
<!--
设置 ID 的方式:ID前加前缀,@+id/
引用资源文件内字符串资源的方式:指定的资源名称前加前缀,@string/
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:id="@+id/layout"
    >
<TextView  
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="@string/hello"
    />
<TextView  
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:id="@+id/txt"
    />
</LinearLayout>

2、res/values/strings.xml

 代码

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="hello">layout 直接调用 values 中的字符串</string>
    <string name="hello2">编程方式调用 values 中的字符串</string>
    <string name="app_name">webabcd_hello</string>
</resources>

3、res/drawable 目录下放置一个名为 icon.png 的图片文件

 

4、AndroidManifest.xml

 代码

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.webabcd.hello"
      android:versionCode="1"
      android:versionName="1.0">
    <application android:icon="@drawable/icon" android:label="@string/app_name">
        <activity android:name=".Main"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
    <uses-sdk android:minSdkVersion="3" />
</manifest> 

5、Main.java

 代码

package com.webabcd.hello;

import android.app.Activity;
import android.os.Bundle;
import android.widget.LinearLayout;
import android.widget.TextView;

public class Main extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        
        // 将指定的布局文件作为 Activity 所显示的内容
        setContentView(R.layout.main);
        
        // 动态地在指定的容器控件上添加新的控件
        TextView txt = new TextView(this);
        txt.setText("动态添加控件");
        // setContentView(txt);
        ((LinearLayout)this.findViewById(R.id.layout)).addView(txt);
        
        // 引用资源文件内的内容作为输出内容
        TextView txt1 = (TextView)this.findViewById(R.id.txt);
        txt1.setText(this.getString(R.string.hello2));
    }
}
 

四、布局(Layout)和菜单(Menu)

 

介绍

在 Android 中各种布局的应用,以及菜单效果的实现

?     各种布局方式的应用,FrameLayout, LinearLayout, TableLayout,AbsoluteLayout, RelativeLayout 

?     为指定元素配置上下文菜单,为应用程序配置选项菜单,以及多级菜单的实现

 

1、各种布局方式的演示(FrameLayout,LinearLayout, TableLayout, AbsoluteLayout, RelativeLayout)

res/layout/main.xml

 代码

<?xml version="1.0" encoding="utf-8"?>
<!-- 
layout_width - 宽。fill_parent: 宽度跟着父元素走;wrap_content: 宽度跟着本身的内容走;直接指定一个 px 值来设置宽
layout_height - 高。fill_parent: 高度跟着父元素走;wrap_content: 高度跟着本身的内容走;直接指定一个 px 值来设置高
-->

<!--
LinearLayout - 线形布局。
    orientation - 容器内元素的排列方式。vertical: 子元素们垂直排列;horizontal: 子元素们水平排列
    gravity - 内容的排列形式。常用的有 top, bottom, left, right, center 等,详见文档
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:gravity="right"
    android:layout_width="fill_parent" android:layout_height="fill_parent">

    <!--
    FrameLayout - 层叠式布局。以左上角为起点,将  FrameLayout 内的元素一层覆盖一层地显示
    -->
    <FrameLayout android:layout_height="wrap_content"
        android:layout_width="fill_parent">
        <TextView android:layout_width="wrap_content"
            android:layout_height="wrap_content" android:text="FrameLayout">
        </TextView>
        <TextView android:layout_width="wrap_content"
            android:layout_height="wrap_content" android:text="Frame Layout">
        </TextView>
    </FrameLayout>

    <TextView android:layout_width="wrap_content"
        android:layout_height="wrap_content" android:text="@string/hello" />

    <!--
    TableLayout - 表格式布局。
        TableRow - 表格内的行,行内每一个元素算作一列
        collapseColumns - 设置 TableLayout 内的 TableRow 中需要隐藏的列的列索引,多个用“,”隔开
        stretchColumns - 设置 TableLayout 内的 TableRow 中需要拉伸(该列会拉伸到所有可用空间)的列的列索引,多个用“,”隔开
        shrinkColumns - 设置 TableLayout 内的 TableRow 中需要收缩(为了使其他列不会被挤到屏幕外,此列会自动收缩)的列的列索引,多个用“,”隔开
    -->
    <TableLayout android:id="@+id/TableLayout01"
        android:layout_width="fill_parent" android:layout_height="wrap_content"
        android:collapseColumns="1">
        <TableRow android:id="@+id/TableRow01" android:layout_width="fill_parent"
            android:layout_height="wrap_content">
            <TextView android:layout_width="wrap_content"
                android:layout_weight="1" android:layout_height="wrap_content"
                android:text="行1列1" />
            <TextView android:layout_width="wrap_content"
                android:layout_weight="1" android:layout_height="wrap_content"
                android:text="行1列2" />
            <TextView android:layout_width="wrap_content"
                android:layout_weight="1" android:layout_height="wrap_content"
                android:text="行1列3" />
        </TableRow>
        <TableRow android:id="@+id/TableRow01" android:layout_width="wrap_content"
            android:layout_height="wrap_content">
            <TextView android:layout_width="wrap_content"
                android:layout_height="wrap_content" android:text="行2列1" />
        </TableRow>
    </TableLayout>

    <!--
    AbsoluteLayout - 绝对定位布局。
        layout_x - x 坐标。以左上角为顶点
        layout_y - y 坐标。以左上角为顶点
    -->
    <AbsoluteLayout android:layout_height="wrap_content"
        android:layout_width="fill_parent">
        <TextView android:layout_width="wrap_content"
            android:layout_height="wrap_content" android:text="AbsoluteLayout"
            android:layout_x="100px" 
            android:layout_y="100px" />
    </AbsoluteLayout>

    <!--
    RelativeLayout - 相对定位布局。
        layout_centerInParent - 将当前元素放置到其容器内的水平方向和垂直方向的中央位置(类似的属性有 :layout_centerHorizontal, layout_alignParentLeft 等)
        layout_marginLeft - 设置当前元素相对于其容器的左侧边缘的距离
        layout_below - 放置当前元素到指定的元素的下面
        layout_alignRight - 当前元素与指定的元素右对齐
    -->
    <RelativeLayout android:id="@+id/RelativeLayout01"
        android:layout_width="fill_parent" android:layout_height="fill_parent">
        <TextView android:layout_width="wrap_content" android:id="@+id/abc"
            android:layout_height="wrap_content" android:text="centerInParent=true"
            android:layout_centerInParent="true" />
        <TextView android:layout_width="wrap_content"
            android:layout_height="wrap_content" android:text="marginLeft=20px"
            android:layout_marginLeft="20px" />
        <TextView android:layout_width="wrap_content"
            android:layout_height="wrap_content" android:text="xxx"
            android:layout_below="@id/abc" android:layout_alignRight="@id/abc" />
    </RelativeLayout>

</LinearLayout>

res/values/strings.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="hello">Hello Layout</string>
    <string name="app_name">webabcd_layout</string>
</resources>

Main.java

 代码

package com.webabcd.layout;

import android.app.Activity;
import android.os.Bundle;

public class Main extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    }
}

2、上下文菜单,选项菜单,子菜单

res/layout/main.xml

 代码

<?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:id="@+id/txt1" android:layout_width="fill_parent"
        android:layout_height="wrap_content" android:text="@string/hello_contextMenu" />
        
    <TextView android:id="@+id/txt2" android:layout_width="fill_parent"
        android:layout_height="wrap_content" android:text="@string/hello_subMenu" />
        
</LinearLayout>

res/values/strings.xml

 代码

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="hello_contextMenu">Hello Context Menu</string>
    <string name="hello_subMenu">Hello Context Sub Menu</string>
    <string name="app_name">webabcd_menu</string>
</resources>


Main.java

 代码

package com.webabcd.menu;

import android.app.Activity;
import android.os.Bundle;
import android.view.ContextMenu;
import android.view.Menu;
import android.view.MenuItem;
import android.view.SubMenu;
import android.view.View;
import android.view.ContextMenu.ContextMenuInfo;
import android.widget.TextView;
import android.widget.Toast;

// 演示两种菜单的实现方式:上下文菜单(通过在某元素上长按,来呼出菜单)和选项菜单(通过按手机上的菜单按钮,来呼出菜单)
public class Main extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        // 为 R.id.txt1 注册一个上下文菜单(在此 TextView 上长按,则会呼出上下文菜单)
        // 具体呼出的菜单内容需要重写 onCreateContextMenu 来创建
        TextView txt1 = (TextView) this.findViewById(R.id.txt1);
        this.registerForContextMenu(txt1);

        // 为 R.id.txt2 注册一个上下文菜单
        TextView txt2 = (TextView) this.findViewById(R.id.txt2);
        this.registerForContextMenu(txt2);
    }

    // 重写 onCreateContextMenu 用以创建上下文菜单
    // 重写 onContextItemSelected 用以响应上下文菜单
    @Override
    public void onCreateContextMenu(ContextMenu menu, View v,
            ContextMenuInfo menuInfo) {
        super.onCreateContextMenu(menu, v, menuInfo);

        // 创建 R.id.txt1 的上下文菜单
        if (v == (TextView) this.findViewById(R.id.txt1)) {
            
            // ContextMenu.setIcon() - 设置菜单的图标
            // ContextMenu.setHeaderTitle() - 设置菜单的标题
            menu.setHeaderIcon(R.drawable.icon01);
            menu.setHeaderTitle("我是菜单");
            
            // 用 ContextMenu.add() 来增加菜单项,返回值为 MenuItem
            // 第一个参数:组ID
            // 第二个参数:菜单项ID
            // 第三个参数:顺序号
            // 第四个参数:菜单项上显示的内容
            menu.add(1, 0, 0, "菜单1");
            
            // MenuItem - 新增菜单项后的返回类型,针对菜单项的其他设置在此对象上操作 
            menu.add(1, 1, 1, "菜单2").setCheckable(true);
            
        }
        // 创建 R.id.txt2 的上下文菜单(多级上下文菜单)
        else if (v == (TextView) this.findViewById(R.id.txt2)) {
            
            // ContextMenu.addSubMenu("菜单名称") - 用来添加子菜单。子菜单其实就是一个特殊的菜单
            SubMenu sub = menu.addSubMenu("父菜单1");
            sub.setIcon(R.drawable.icon01);
            sub.add(0, 0, 0, "菜单1");
            sub.add(0, 1, 1, "菜单2");
            sub.setGroupCheckable(1, true, true);

            SubMenu sub2 = menu.addSubMenu("父菜单2");
            sub2.setIcon(R.drawable.icon01);
            sub2.add(1, 0, 0, "菜单3");
            sub2.add(1, 1, 1, "菜单4");
            sub2.setGroupCheckable(1, true, false);
            
        }
    }
    
    
    // 重写 onCreateOptionsMenu 用以创建选项菜单
    @Override
    public boolean onCreateOptionsMenu(Menu menu) {

        MenuItem menuItem = menu.add(0, 0, 0, "菜单111111111111111111111");
        
        // MenuItem.setIcon() - 设置菜单项的图标
        // MenuItem.setTitleCondensed() - 菜单的简标题,如果指定了简标题的话,菜单项上的标题将会以此简标题为准
        // MenuItem.setAlphabeticShortcut() - 设置选中此菜单项的快捷键
        // 注:菜单项超过 6 个的话,第 6 个菜单将会变为  More 菜单,多余的菜单会在单击 More 菜单之后显示出来
        menuItem.setIcon(R.drawable.icon01);
        menuItem.setTitleCondensed("菜单1");
        menuItem.setAlphabeticShortcut('a');

        menu.add(0, 1, 1, "菜单2").setIcon(R.drawable.icon02);
        menu.add(0, 2, 2, "菜单3").setIcon(R.drawable.icon03);
        menu.add(0, 3, 3, "菜单4");
        menu.add(0, 4, 4, "菜单5");
        menu.add(0, 5, 5, "菜单6");
        menu.add(0, 6, 6, "菜单7").setIcon(R.drawable.icon04);
        menu.add(0, 7, 7, "菜单8").setIcon(R.drawable.icon05);

        return true;
    }

    // 重写 onOptionsItemSelected 用以响应选项菜单
    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        super.onOptionsItemSelected(item);
        
        Toast.makeText(Main.this, "被单击的菜单项为:" + String.valueOf(item.getItemId()), Toast.LENGTH_SHORT).show();

        return false;
    }
}


Android控件

Android 中使用各种控件(View)

?    TextView - 文本显示控件

?    Button - 按钮控件

?    ImageButton - 图片按钮控件

?    ImageView - 图片显示控件

?    CheckBox - 复选框控件

?    RadioButton - 单选框控件

?    AnalogClock - 钟表(带表盘的那种)控件

?    DigitalClock - 电子表控件

?     DatePicker - 日期选择控件

?     TimePicker - 时间选择控件

?     ToggleButton - 双状态按钮控件

?     EditText - 可编辑文本控件

?     ProgressBar - 进度条控件

?     SeekBar - 可拖动的进度条控件

?     AutoCompleteTextView - 支持自动完成功能的可编辑文本控件

?     MultiAutoCompleteTextView - 支持自动完成功能的可编辑文本控件,允许输入多值(多值之间会自动地用指定的分隔符分开)

 ?     ZoomControls - 放大/缩小按钮控件

?     Include - 整合控件

?     VideoView - 视频播放控件

?     WebView - 浏览器控件

?     RatingBar - 评分控件

?     Tab - 选项卡控件

?     Spinner - 下拉框控件

?     Chronometer - 计时器控件

?     ScrollView - 滚动条控件

 ?     TextSwitcher - 文字转换器控件(改变文字时增加一些动画效果)

?     Gallery - 缩略图浏览器控件

?     ImageSwitcher - 图片转换器控件(改变图片时增加一些动画效果)

?     GridView - 网格控件

?     ListView - 列表控件

?     ExpandableList - 支持展开/收缩功能的列表控件

 


 

 






 


  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值