1. <tt id="5hhch"><source id="5hhch"></source></tt>
    1. <xmp id="5hhch"></xmp>

  2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

    <rp id="5hhch"></rp>
        <dfn id="5hhch"></dfn>

      1. Android初學(xué)者必看的學(xué)習(xí)筆記

        時(shí)間:2020-09-27 15:53:13 讀書筆記 我要投稿

        Android初學(xué)者必看的學(xué)習(xí)筆記

          第一步:

        Android初學(xué)者必看的學(xué)習(xí)筆記

          Android(1) - 在 Windows 下搭建 Android 開發(fā)環(huán)境,以及 Hello World 程序

          搭建 Android 的開發(fā)環(huán)境,以及寫一個(gè)簡(jiǎn)單的示例程序

          在 Windows 下搭建 Android 開發(fā)環(huán)境 Android 項(xiàng)目的目錄結(jié)構(gòu)說(shuō)明 寫一個(gè)簡(jiǎn)單的 Hello World 程序

          一、在 Windows 下搭建 Android 開發(fā)環(huán)境

          1、安裝 JDK (Java Development Kit)

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

          2、安裝 Android SDK

          http://developer.android.com/sdk

          3、安裝 Eclipse

          /android/eclipse/ ,然后安裝 ADT(Android Development Tools)

          5、新建 Android 項(xiàng)目

          "New" -> Android Project,Project Name - 項(xiàng)目名稱;Build Target - 編譯項(xiàng)目的 SDK 版本;Application name - 程序名稱;Package name - 包名;Min SDK Version - 程序所支持的最低 SDK 版本代號(hào)(2 對(duì)應(yīng) 1.1,3 對(duì)應(yīng) 1.5,4 對(duì)應(yīng) 1.6)

          6、運(yùn)行 Android 項(xiàng)目

          打開菜單 "Run" -> "Run Configurations" -> New launch configuration,設(shè)置啟動(dòng)項(xiàng)目名稱,在 Android 選項(xiàng)卡中選擇啟動(dòng)項(xiàng)目,在 Target 選項(xiàng)卡中設(shè)置模擬器

          7、創(chuàng)建/使用模擬 SD 卡

          創(chuàng)建 SD 卡,運(yùn)行類似如下命令:mksdcard -l sdcard 512M d:androidsdcard.img

          模擬器中使用 SD 卡,在項(xiàng)目配置的 Target 選項(xiàng)卡的 "Additional Emulator Command Line Options" 框中輸入類似如下參數(shù):-sdcard d:androidsdcard.img

          8、配置模擬器

          運(yùn)行類似如下命令:android create avd --name android15 --target 2;蛘咧苯釉诓藛 "Window" -> "Android AVD Manager" 中配置模擬器

          9、瀏覽模擬 SD 卡中的'內(nèi)容

          調(diào)試程序,在 DDMS 中選擇 "File Explorer" ,在其中的 sdcard 目錄下就是模擬 SD 卡中的內(nèi)容

          10、查看日志 LogCat

          Window -> Show View -> Other -> Android -> LogCat

          11、在模擬器中安裝/卸載 apk

          安裝 apk 運(yùn)行類似如下命令:adb install name.apk;卸載 apk 運(yùn)行類似如下命令:adb uninstall packagename(注:這里的參數(shù)是需要卸載的包名)

          12、反編譯 Android 程序

          解壓 apk 文件,取出其中的 classes.dex 文件,運(yùn)行類似如下命令:dexdump.exe -d classes.dex > dump.txt(其意思是將 classes.dex dump 出來(lái),并將反編譯后的代碼保存到指定的文本文件中)

          13、人品不好是出現(xiàn)的某些錯(cuò)誤的解決辦法

          如果出現(xiàn)類似如下的錯(cuò)誤等

          no classfiles specified

          Conversion to Dalvik format failed with error 1

          解決辦法:Project -> Clean

          出現(xiàn) Android SDK Content Loader 60% (一直卡在 60%)

          解決辦法:Project -> 去掉 Build Automatically 前面的勾

          14、查看 SDK 源代碼

          先想辦法搞到源代碼,如這個(gè)地址 /android.asp ,然后將其解壓到 SDK 根路徑下的 sources 文件夾內(nèi)即可

          二、Android 項(xiàng)目的目錄結(jié)構(gòu)

          1、src - 用于放置源程序

          2、gen - 自動(dòng)生成 R.java 文件,用于引用資源文件(即 res 目錄下的數(shù)據(jù))

          3、assets - 用于放置原始文件,Android 不會(huì)對(duì)此目錄下的文件做任何處理,這是其與 res 目錄不同的地方

          4、res/drawable - 用于放置圖片之類的資源;res/layout - 用于放置布局用的 xml 文件;res/values - 用于放置一些常量數(shù)據(jù)

          5、AndroidManifest.xml - Android 程序的清單文件,相當(dāng)于配置文件,配置應(yīng)用程序名稱、圖標(biāo)、Activity、Service、Receiver等

          三、Hello World 程序

          1、res/layout/main.xml 代碼

          <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"

          />

          2、res/values/strings.xml

          代碼

          layout 直接調(diào)用 values 中的字符串

          編程方式調(diào)用 values 中的字符串

          webabcd_hello

          3、res/drawable 目錄下放置一個(gè)名為 icon.png 的圖片文件

          4、AndroidManifest.xml

          代碼

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

          package="com.webabcd.hello"

          android:versionCode="1"

          android:versionName="1.0">

          <activity android:name=".Main"

          android:label="@string/app_name">

          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 所顯示的內(nèi)容

          setContentView(R.layout.main);

          // 動(dòng)態(tài)地在指定的容器控件上添加新的控件

          TextView txt = new TextView(this);

          txt.setText("動(dòng)態(tài)添加控件");

          // setContentView(txt);

          ((LinearLayout)this.findViewById(R.id.layout)).addView(txt);

          // 引用資源文件內(nèi)的內(nèi)容作為輸出內(nèi)容

          TextView txt1 = (TextView)this.findViewById(R.id.txt);

          txt1.setText(this.getString(R.string.hello2));

          }

          }

          Android(2) - 布局(Layout)和菜單(Menu)

          介紹

          在 Android 中各種布局的應(yīng)用,以及菜單效果的實(shí)現(xiàn)

          各種布局方式的應(yīng)用,F(xiàn)rameLayout, LinearLayout, TableLayout, AbsoluteLayout, RelativeLayout

          為指定元素配置上下文菜單,為應(yīng)用程序配置選項(xiàng)菜單,以及多級(jí)菜單的實(shí)現(xiàn)

          1、各種布局方式的演示 res/layout/main.xml 代碼

          <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 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 android:layout_width="wrap_content"

          android:layout_height="wrap_content" android:text="Frame Layout">

          <TextView android:layout_width="wrap_content"

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

        【Android初學(xué)者必看的學(xué)習(xí)筆記】相關(guān)文章:

        拳擊技巧初學(xué)者必看09-24

        韓語(yǔ)初學(xué)者必看口語(yǔ):回個(gè)電話11-20

        初學(xué)者必看的太極拳10個(gè)知識(shí)10-09

        肚皮舞初級(jí)教程--初學(xué)者必看10-09

        攝影初學(xué)者必看 5個(gè)不可忽略的攝影問(wèn)題10-08

        初學(xué)者韓語(yǔ)學(xué)習(xí)的方法09-12

        初學(xué)者必看3D效果圖技巧09-17

        初學(xué)者怎么學(xué)習(xí)flash10-04

        初學(xué)者如何學(xué)習(xí)高爾夫09-17

        国产高潮无套免费视频_久久九九兔免费精品6_99精品热6080YY久久_国产91久久久久久无码

        1. <tt id="5hhch"><source id="5hhch"></source></tt>
          1. <xmp id="5hhch"></xmp>

        2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

          <rp id="5hhch"></rp>
              <dfn id="5hhch"></dfn>