Android入門掃盲之二

來源:互聯網
上載者:User

http://35java.com/zhibo/forum.php?mod=viewthread&tid=388&extra=page%3D1

在Android開發中對資源的引用是很重要的內容,看一個Android工程結構的好與壞,其實看看工程結構的資源檔的相互關係就大概可以看出來了,個人覺得學習好Android,資源檔是很重要的部分,這裡講的都是些入門層級的知識點,耐下心思看哦,呵呵。

1,
三種資源檔形式。資源檔之間的相互引用自然是基礎的基礎,三種形式(android:xxx/yyy,@xxxx/yyy,?xxx)的區別要徹底地弄明白。

2,
資源檔的屬性命名。資源檔屬性的命名(其實大部分是id名字,也有其它的,這裡不再累贅)對於初學者可能不太會在意,其實是很重要的部分,它其實也就是一些我們預先定義好的變數,能不在乎嗎,這些變數會在自動產生映射類R.java中產生一些靜態索引值,協助Android快速定位,命名說白了,也是要求我們做到望名知意(最好包括類型)。

3,
每個工程都會有對應的一個AndroidManifest.xml檔案,這個檔案要注意的是一些許可權的表示屬性,如:

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

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

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

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

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

看命名就知道是針對什麼做許可權限制,所以初學者要注意了,在你的程式啟動並執行時候報SecurityException的時候要看看你的程式是否涉及到限制操作,呵呵。這些在android.Manifest.permission裡面,大家自己看可能會更好,自己學習的能力很重要哦,要不然你做的不可能是前沿的東西啦。

4,
自己定義類的引用。怎麼定義、怎麼使用,可以參考ApiDemo裡面的經典執行個體:com.example.android.apis.view.LableView.java 。這也是很重哦,因為在我們開發的過程中,Android提供的UI肯定不能滿足我們的要求,這樣你就得自己寫新的UI類,我在開發中就遇到很多這樣的問題。如,Android現有的TabHost,在TabSpec多的時候你就感覺出TabHost英雄無用武之地啦,這樣就得自己寫了。

寫自己的Android Components

上面的第四點已經提到了一下,學會寫自己的控制項的重要性。在Android裡面,提供了豐富的類庫,如何使用好也是值得探討的問題。當然這裡說的也是api裡面說的,這裡說的主要是我在學習的過程中認為很重要的方面.

主要把介面布局類:LinearLayout和FrameLayout弄懂簡單的開發就夠了,再深入一點就要把ViewManager及其子類弄清楚了。

其中,LinearLayout垂直和水平兩種,他們之間可以相互嵌套,嵌套時候要注意高和寬的屬性,如。

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

xmlns:app="http://schemas.android.com/apk/res/com.srk.study"

android:id="@+id/screen" android:layout_width="fill_parent"

android:layout_height="fill_parent"

android:background="@drawable/background" android:focusable="true"

androidrientation="vertical">

<LinearLayout
android:layout_width="fill_parent"

android:layout_height="65dip"

android:background="@drawable/background"

androidrientation="horizontal">

<com.srk.study.model.TitleView android:id="@+id/titleView"

android:layout_width="280dip" android:layout_height="65dip"

android:paddingLeft="5dip" android:paddingTop="10dip"

app:focusBgColor=@drawable/whiteColor app:titleColor=@drawable/blackColor

app:titleSize="15dip" />

<com.srk.study.model.ConnectView android:id="@+id/connectView"

android:layout_height="65dip"

android:layout_width="40dip" app.startX="280dip" />

</LinearLayout>

<!-- ############# Body ############ -->

<ListView android:id="@+id/bodyListView" android:layout_width="fill_parent"

android:paddingTop="3dip" android:layout_height="wrap_content"

android:layout_weight="1.0"

android:persistentDrawingCache="animation|scrolling"

android:scrollbars="vertical" android:focusable="true"

android:scrollbarSize="12dip" />

</LinearLayout>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.