Android开发经验谈Android技术知识Android开发

Android 开发札记初级(五)重要文件解析

2016-12-07  本文已影响0人  Newamber

之前我们创建了一个 Hello World 项目,根据前几节的了解,gradle 和系统已经自动帮我们生成了项目的文件,现在让我们来看看一些主要文件的代码和作用。

app | src | AndroidManifest.xml

这个是我们 Android 项目的配置文件,我们在应用程序中定义的所有四大组件都需要在这个文件里注册,另外还可以在这个文件中给应用程序添加权限声明。( 注意:与 eclipse 不同的是,项目中的versionCodeversionName以及对程序最低兼容和目标版本的控制不再是在这里,而是在项目的build.gradle里面)

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

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".HelloWorldActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

main | res | layout | hello_world_layout.xml

<?xml version="1.0" encoding="utf-8"?>
<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="com.example.newam.helloworld.HelloWorldActivity">

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

    <TextView
        android:text="I love QYPing!"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_marginBottom="31dp"
        android:id="@+id/textView2" />
</RelativeLayout>

main | java | com | username | helloworld | HelloWorldActivity.java

package com.example.newam.helloworld;

import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;


public class HelloWorldActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        //代码提示快捷键:Ctrl+Alt+空格键选中activity_main可以打开到指定的R.java文件中。
        //onCreate方法是一个活动被创建时必定被执行的方法
        super.onCreate(savedInstanceState);
        //这个方法给当前的活动引入了一个叫做hello_world_layout布局
        setContentView(R.layout.hello_world_layout);
        //Log是安卓的工具类(android.util.Log)提供了如下几个方法供我们打印日志,如下在logcat中只打印debug信息
        Log.d("HelloWorldActivity","onCreate execute");
    }
}

推门看到覆满天际细碎的云絮。西边树丛后的晚霞像野火余烬被风吹过,骤然亮起;然后光色急遽变幻,冷凝,沉落,漫天云纹随之潜入夜色。这大地之上的璀然告别发生在短短的十分钟里,突然一阵惶然失措,让人什么都来不及想、来不及说。

上一篇下一篇

猜你喜欢

热点阅读