第四篇 Android应用程序详细解析

我们继续的沿用上一篇所建立的应用。

Android应用程序可以分为:应用程序源代码(.java),应用程序描述文件(.xml),各种资源。

可以这么理解: 安卓应用程序,通过java代码来实现其业务逻辑,由XML文件来描述其界面及其他一切资源。

我们来看看下面的几类文件:

一、资源极其描述文件。

1. strings.xml 文件

strings.xml 文件是定义程序中使用的字符串资源。

打开HelloWorld项目,展开res/values/目录,找到strings.xml 文件。

建立项目的时候自动创建的代码:

<?xml version="1.0" encoding="utf-8"?>
<resources>

    <string name="app_name">搜投网</string>
    <string name="action_settings">Settings</string>
    <string name="hello_world">Hello world!</string>

</resources>

代码注释版:

<?xml version="1.0" encoding="utf-8"?>
<!-- 定义了xml的版本,以及编码方式 -->

<!--resources 定义资源的标签  -->
<resources>
    <!-- String 定义了三个字符串常量  ,该变量可以在java和xml文件中使用  -->

    <!-- 字符串的为  appname ,内容为 “搜投网”  -->
    <string name="app_name">搜投网</string>

    <!-- 字符串的为  appname ,内容为 “Settings”  -->
    <string name="action_settings">Settings</string>

    <!-- 字符串的为  appname ,内容为 “Hello world!”  -->
    <string name="hello_world">Hello world!</string>

</resources>

在AndroidManifest.xml文件中可以找到相应的引用。

对应的效果:

2. styles.xml 文件。

styles.xml 文件是预先定义布局中需要显示的样式,如文本的显示颜色和字体等。

创建项目的时候生成的代码:

<resources>

    <!--
        Base application theme, dependent on API level. This theme is replaced
        by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
    -->
    <style name="AppBaseTheme" parent="android:Theme.Light">
        <!--
            Theme customizations available in newer API levels can go in
            res/values-vXX/styles.xml, while customizations related to
            backward-compatibility can go here.
        -->
    </style>

    <!-- Application theme. -->
    <style name="AppTheme" parent="AppBaseTheme">
        <!-- All customizations that are NOT specific to a particular API-level can go here. -->
    </style>

</resources>

在name="AppBaseTheme"上加以下代码:

<item name="android:textSize">30sp</item>
<item name="android:textColor">#111</item>

在 name="AppTheme" 上加以下代码:

<item name="android:textSize">8sp</item>

代码解析:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <!--
        Base application theme, dependent on API level. This theme is replaced
        by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
    -->
    <style name="AppBaseTheme" parent="android:Theme.Light">
        <!--
            Theme customizations available in newer API levels can go in
            res/values-vXX/styles.xml, while customizations related to
            backward-compatibility can go here.
        -->

        <!-- 定义类   "AppBaseTheme" 样式文本的大小为  30sp  ,颜色为 #111 -->
        <item name="android:textSize">30sp</item>
        <item name="android:textColor">#111</item>

    </style>

    <!-- Application theme. -->
    <style name="AppTheme" parent="AppBaseTheme">
        <!-- All customizations that are NOT specific to a particular API-level can go here. -->

       <!-- 定义类   "AppTheme" ,在保持父样式的其他属性不变的情况下,该样式文本的大小为  8sp  -->
       <item name="android:textSize">8sp</item>

    </style>
</resources>

3. dimens.xml文件  

dimens.xml文件通常用于创建布局常量,在样式和布局资源中定义边界、高度和尺寸大小时经常用到维度,使用“<dimen>”标签指定一个维度资源 。

用标识符表示维度单位:

px(像素):屏幕上的像素。
in (英寸):长度单位。
mm(毫米):长度单位。
pt (磅):1/72英寸。
dip(与密度无关的像素):一种基于屏幕密度的抽象单位。
sp (与刻度无关的像素):与pd类似。

建议:使用sp作为文字的单位,使用dip作为其他元素的单位。

<resources>

    <!-- Default screen margins, per the Android Design guidelines. -->
    <dimen name="activity_horizontal_margin">16dp</dimen>
    <dimen name="activity_vertical_margin">16dp</dimen>

</resources>

4. colors.xml 文件 

有些应用可能会没有这个文件。

使用“<color>”标签定义一个颜色资源。
颜色值由RGB(三位16进制数)或RRGGBB (六位16进制数)表示,以“# ”符号开头。例如:#00f(蓝色), #00ff00(绿色)。
定义透明色,表示透明度的alpha通道值紧随“#”之后。例如: #600f(透明蓝色), #7700ff00(透明绿色)

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <color name="listDivider">#ffcc99</color>
    <color name="character">#f37301</color>
</resources>

5. activity_main.xml 文件

位于res文件夹的layout子文件夹中。
定义第一个显示界面布局(默认)。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

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

</RelativeLayout>

解析后的代码:

<?xml version="1.0" encoding="utf-8"?>
<!-- 定义xml版本,以及编码方式  -->

<!-- 定义了一个   相对布局   -->
<!-- 属性" http://schemas.android.com/apk/res/android" 是xml的命名空间,告诉安卓工具,将要涉及公共的属性已被定义在xml命名空间。-->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <!-- 添加了一个textView 控件,其显示的内容是 string.xml 文件定义的内容   -->
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />

</RelativeLayout>

6.  AndroidManifest.xml文件

根目录下的AndroidManifest.xml文件是一个清单文件,用于应用程序的全局描述。

应用程序的包名,该包名将作为应用程序的唯一标识符。
包含的组件如:Activity、Service、BroadcastReceiver及ContentProvider等。
应用程序兼容的最低版本。
声明应用程序需要的链接库。
声明应用程序自身应该具有的权限。
其他应用程序访问该应用程序时应该具有的权限。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.souvc.helloworld"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="19"
        android:targetSdkVersion="19" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.souvc.helloworld.MainActivity"
            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>

</manifest>

解析后的代码:

<?xml version="1.0" encoding="utf-8"?>
<!-- 定义xml版本,以及编码方式  -->

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.souvc.helloworld"
    android:versionCode="1"
    android:versionName="1.0" >

    <!-- 定义了包名 -->
    <!-- 定义了版本 -->
    <!-- 定义了版本名-->

     <!-- 可兼容的最低版本,以及当前版本  -->
    <uses-sdk
        android:minSdkVersion="19"
        android:targetSdkVersion="19" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >

        <!-- 定义应用程序的图标 -->
        <!-- 定义应用程序的名字 -->
        <!-- 定义应用程序的主题 -->

        <!-- 应用程序第一个执行的是   com.souvc.helloworld 下的  MainActivity 类 -->
        <activity
            android:name="com.souvc.helloworld.MainActivity"
            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>

</manifest>

二、 逻辑代码文件。

1.  MainActivity.java 文件。

位于src文件夹中。
应用程序的操作控制部分在java源程序中定义

package com.souvc.helloworld;

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

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

}

解析后的代码:

package com.souvc.helloworld;

//引入相关的类
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;

/**
* @Title: MainActivity.java
* @Package com.souvc.helloworld
* @Description:操作安卓界面的代码
* @author souvc
* @date 2016-1-1
* @version V1.0
 */
public class MainActivity extends Activity {

    //第一次创建该Activity时的回调方法
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);//调用父类的onCreate()构造函数,savedInstanceState保存当前的Activity的状态信息
        setContentView(R.layout.activity_main);//设置当前显示的布局
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

}

2.  R.java 文件

由Android-Eclipse自动生成,不能直接修改。
用资源id的形式标注drawable、layout、values文件夹中的资源信息。

/* AUTO-GENERATED FILE.  DO NOT MODIFY.
 *
 * This class was automatically generated by the
 * aapt tool from the resource data it found.  It
 * should not be modified by hand.
 */

package com.souvc.helloworld;

public final class R {
    public static final class attr {
    }
    public static final class color {
        public static final int character=0x7f040001;
        public static final int listDivider=0x7f040000;
    }
    public static final class dimen {
        /**  Default screen margins, per the Android Design guidelines. 

         Customize dimensions originally defined in res/values/dimens.xml (such as
         screen margins) for sw720dp devices (e.g. 10" tablets) in landscape here.

         */
        public static final int activity_horizontal_margin=0x7f050000;
        public static final int activity_vertical_margin=0x7f050001;
    }
    public static final class drawable {
        public static final int ic_launcher=0x7f020000;
    }
    public static final class id {
        public static final int action_settings=0x7f090000;
    }
    public static final class layout {
        public static final int activity_main=0x7f030000;
    }
    public static final class menu {
        public static final int main=0x7f080000;
    }
    public static final class string {
        /**  字符串的为  appname ,内容为 “Settings”
         */
        public static final int action_settings=0x7f060001;
        /**  String 定义了三个字符串常量  ,该变量可以在java和xml文件中使用
 字符串的为  appname ,内容为 “搜投网”
         */
        public static final int app_name=0x7f060000;
        /**  字符串的为  appname ,内容为 “Hello world!”
         */
        public static final int hello_world=0x7f060002;
    }
    public static final class style {
        /**
        Base application theme, dependent on API level. This theme is replaced
        by AppBaseTheme from res/values-vXX/styles.xml on newer devices.

        Base application theme for API 11+. This theme completely replaces
        AppBaseTheme from res/values/styles.xml on API 11+ devices.

 API 11 theme customizations can go here. 

        Base application theme for API 14+. This theme completely replaces
        AppBaseTheme from BOTH res/values/styles.xml and
        res/values-v11/styles.xml on API 14+ devices.

 API 14 theme customizations can go here.
         */
        public static final int AppBaseTheme=0x7f070000;
        /**  Application theme.
         */
        public static final int AppTheme=0x7f070001;
    }
}

以上的注释,当在xml注释后,自动生成该注释。

时间: 2024-08-09 06:24:38

第四篇 Android应用程序详细解析的相关文章

Android应用程序的解析

一: 文件架构 二: 图片,语音资源的使用 图片的两种使用方法: 第一种: 使用imageView控件 <ImageView android:id="@+id/imageView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/logo" /> 第二种: 使用image

Yii框架分析(四)——WebApplication的run函数详细解析

Yii应用的入口脚本最后一句启动了WebApplication Yii::createWebApplication($config)->run(); CApplication: public function run() { $this->onBeginRequest(new CEvent($this)); $this->processRequest(); $this->onEndRequest(new CEvent($this)); } processRequest()开始处理请

详细解析BluetoothAdapter的详细api

(1)开关状态值 (2)扫描状态值 (3)蓝牙操作接收的广播 (4)蓝牙操作请求的广播 (5)附加域 (6)错误码 (1)获取蓝牙适配器 (2)获取state状态方法 (3)蓝牙是否可用 (4)打开蓝牙 (5)关闭蓝牙 (1)开始扫描 (2)是否在扫描中 (3)取消查找 (4)获取扫描模式 (1)检查蓝牙地址 (2)获取本地蓝牙地址 (3)获取本地蓝牙名称 (4)获取绑定的蓝牙集合 (5)获取远程蓝牙设备 (6)创建监听 这篇文章将会详细解析BluetoothAdapter的详细api, 包括隐

第三篇 安卓Android应用程序目录结构解析

建立的HelloWorld的应用项目,其代码是由ADT插件自动生成的,形成Android项目特有的结构框架. 接下来让我带领大家解析一个Android程序的各个组成部分,这次我们拿一个Hello,World做例子,虽然只是一个Hello,World,但也是麻雀虽小五脏俱全,通过分析Hello,World的目录结构,让我们对Android程序有一个整体全面的认识. 一.创建一个Android 应用项目 启动Eclipse: 选择File->New->Project…:选择Android 下的An

android入门知识:安卓的系统架构详细解析

对于很多新手来说安卓系统架构都不是很了解,麦子学院android开发老师讲过,Android 是Google开发的基于Linux平台的开源手机操作系统.它包括操作系统.用户界面和应用程序 -- 移动电话工作所需的全部软件,而且不存在任何以往阻碍移动产业创新的专有权障碍.Android采用WebKit浏览器引擎,具备触摸屏.高级图形显示和上网功能,用户能够在手机上查看电子邮件.搜索网址和观看视频节目等,比iPhone等其他手机更强调搜索功能,界面更强大,可以说是一种融入全部Web应用的单一平台.这

Android AsyncTask 详细解析

结构 继承关系 public abstract class AsyncTask extends Object java.lang.Object android.os.AsyncTask<Params, Progress, Result> 类概述 AsyncTask能够适当地.简单地用于 UI线程. 这个类不需要操作线程(Thread)就可以完成后台操作将结果返回UI. 异步任务的定义是一个在后台线程上运行,其结果是在 UI线程上发布的计算. 异步任务被定义成三种泛型类型: Params,Pro

【Android的从零单排开发日记】之入门篇(四)——Android四大组件之Activity

在Android中,无论是开发者还是用户,接触最多的就算是Activity.它是Android中最复杂.最核心的组件.Activity组件是负责与用户进行交互的组件,它的设计理念在很多方面都和Web页面类似.当然,这种相似性主要体现在设计思想上.在具体实现方面,Android的Activity组件有自己的设计规范,同时,它能够更简便地使用线程.文件数据等本地资源. 一.Activity 的生命周期 Activity 的生命周期是被以下的函数控制的. 1 public class Activity

Android应用程序签名过程和解析过程分析

在正式解释Android应用程序签名过程之前,作为铺垫,还得先讲讲最基本的一些概念. 非对称加密算法 非对称加密算法需要两个密钥:公开密钥(简称公钥)和私有密钥(简称私钥).公钥与私钥是一对,如果用公钥对数据进行加密,只有用对应的私钥才能解密:如果用私钥对数据进行加密,那么只有用对应的公钥才能解密.因为加密和解密使用的是两个不同的密钥,所以这种算法叫作非对称加密算法. 非对称加密算法是数字签名和数字证书的基础,大家非常熟悉的RSA就是非对称加密算法的一种实现. 消息摘要算法 消息摘要算法(Mes

(干货) Android Volley框架源码详细解析

前言 经常接触Android网络编程的我们,对于Volley肯定不陌生,但我们不禁要问,对于Volley我们真的很了解吗?Volley的内部是怎样实现的?为什么几行代码就能快速搭建好一个网络请求?我们不但要知其然,也要知其所以然,抱着这样的目的,本文主要详细讲述Volley的源码,对内部流程进行详细解析. Part 1.从RequestQueue说起 (1)还记得搭建请求的第一步是什么吗?是新建一个请求队列,比如说这样: RequestQueue queue = Volley.newReques