實驗4 顏色 字串資源的使用

2022-08-31 15:30:22 字數 2496 閱讀 9758

課程名稱

基於android平台移動網際網路開發

實驗日期

2016.3.25

實驗專案名稱

顏色、字串資源的使用

實驗地點

s3010

實驗型別

□驗證型    √設計型    □綜合型

學  時

一、實驗目的及要求(本實驗所涉及並要求掌握的知識點)

掌握android中顏色和字串資源的使用方法。

理解android中尺寸和布局資源的使用方法。

二、實驗環境(本實驗所使用的硬體裝置和相關軟體)

(1)pc機

(2)作業系統:windows xp

(3)軟體: eclipse, jdk1.6,android sdk,adt

三、實驗內容及步驟

建立工程

修改字串資源

新建顏色資源color.xml

使用資源顏色和字串資源

尺寸、布局資源的使用

四、實驗結果(本實驗源程式清單及執行結果或實驗結論、實驗設計圖)

**:

1、

xmlns:tools=""android:layout_width="match_parent"android:layout_height="match_parent"android:background="@color/red_bg"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=".mainactivity" >

android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/hello_world"android:textcolor="@color/textcolor"android:textsize="30sp"

/>

2、 

xmlns:tools=""android:layout_width="match_parent"android:layout_height="match_parent"android:background="@drawable/ic_launcher"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=".mainactivity" >

android:id="@+id/button1"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_below="@+id/textview1"android:layout_centerhorizontal="true"android:text="查詢" />

android:id="@+id/textview1"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_alignparenttop="true"android:layout_centerhorizontal="true"android:layout_margintop="41dp"android:text="@string/gzcc"android:textsize="24dp" />

執行結果:(截圖)

五、實驗總結(對本實驗結果進行分析,實驗心得體會及改進意見)

本次實驗相對比較簡單,完成起來比較順利。

實驗評語

實驗成績

指導教師簽名:              年   月   日

實驗4 顏色 字串資源的使用

課程名稱 基於android平台移動網際網路開發 實驗日期 2016 3 25 實驗專案名稱 建立數獨遊戲啟動介面 實驗地點 綜合實驗室 實驗型別 驗證型 設計型 綜合型 學 時 一 實驗目的及要求 本實驗所涉及並要求掌握的知識點 目的 1.掌握android中顏色和字串資源的使用方法。2.理解an...

實驗4 顏色 字串資源的使用

13級網路工程 麥嘉雯 201306114130 課程名稱 基於android平台移動網際網路開發 實驗日期 2016 3 25 實驗專案名稱 建立數獨遊戲啟動介面 實驗地點 綜合實驗室 實驗型別 驗證型 設計型 綜合型 學 時 2一 實驗目的及要求 本實驗所涉及並要求掌握的知識點 目的 1.掌握a...

string資源的格式字串使用

在資源檔案中這麼寫 我的名字叫 1 s,今年 2 d歲 1代表第乙個格式字串的位置,從1開始 s 代表字串 d 代表數字 在程式中的使用 textview tv textview findviewbyid r.id.textview string str getresources getstring...