Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 關於android開發 >> android開發之路05,android之路05

android開發之路05,android之路05

編輯:關於android開發

android開發之路05,android之路05


一.獲取res資源文件下values中內容的方式:

1.string.xml文件-------------------------------》 取值方式:getResource().getString(resourceID)或者getResource.getText(resourceID);

 

2.Arrays.xml文件-----------------------------------》取值方式:getResource().getStringArray(resourceID);

 

3.Colors.xml文件--------------------------------------》取值方式getResource().getDarwable(resourceID)或者getResource().getColor(resourceID);

 

4.Dimens.xml文件---------------------------------------》getResource().getDimension(resourceID);

 

5.Style.xml-----------------------------------------------》不需要取值

 

二.AndroidManifest.xml清單文件說明:

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

<!--package="com.rookie.hello"表示整個應用程序的主要包名,而且是一個默認的程序名稱

android:versionCode="1"表示該工程生成的apk的版本號,1開始不斷的遞增;

android:versionName="1.0"表示版本的名稱,1.0開始,其他版本名稱自由設置

android:installLocation="auto"apk會自動尋找安裝的目錄,ROM或者SDcard卡

internalOnly 僅僅只能安裝在ROM上

preferExternal 會直接安裝到sdcard卡上

 

  -->

<manifest xmlns:android="http://schemas.android.com/apk/res/android"

    package="com.rookie.hello"

    android:versionCode="1"

    android:versionName="1.0" >

    <!--添加用戶的授權  -->

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>

    <uses-sdk

        android:minSdkVersion="15"

        android:targetSdkVersion="23" />

<!--android:icon="@drawable/ic_launcher"表示我們應用程序logo圖片

android:label="@string/app_name"表示應用工程的文字說明

  -->

    <application

        android:allowBackup="true"

        android:icon="@drawable/ic_launcher"

        android:label="@string/app_name"

        android:theme="@style/AppTheme" >

        <!--android:name=".MainActivity"表示整個應用程序的主程序的名稱

        intent-filter:意圖過濾器,用來過濾用戶的動作和操作

        android.intent.action.MAIN:表示當前程序是整個工程的入口程序

        category android:name:表示決定應用程序是否在程序列表中顯示

           -->

        <activity

            android:name=".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. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved