您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關Android中XML如何使用,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
在Android中,res/layout資源目錄下,會有一個或多個.xml文件,這就是一個界面的布局文件。我們打開一個來看看。我打開當前工程目錄下的res/layout/main.xml文件。
< ?xml version="1.0" encoding="utf-8"?>
< LinearLayout xmlns:android=
"http://schemas.android.com/apk/res/android"android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
< TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
android:id="@+id/mainview"
/>
< /LinearLayout>
這個文件很簡單的布局是指用了一個LinearLayout來布局,里面只有一個TextView界面元素,也就是一個View.當Activity加載View時,就可以在onCreate中直接加載。this.setContentView(R.layout.main);其中R.layout.main就是一個素引值,是由android開發環境編譯生成的,是映射到res/layout/main.xml的。
所以setContentView(R.layout.main);等價于,按裝main.xml的布局來配置一個layout.然后加載,與如下代碼效果一致
LinearLayout layout = new LinearLayout(this); TextView tv = new TextView(this); tv.setText(R.string.hello); layout.addView(tv); this.setContentView(layout);
其中R.string.hello也是一個資源映射的ID,是指加載res/values/string.xml中的hello對應的值。
關于Android中XML如何使用就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。