Android中使用顏色資源的完成調(diào)色板項(xiàng)目的代碼清單_第1頁
Android中使用顏色資源的完成調(diào)色板項(xiàng)目的代碼清單_第2頁
Android中使用顏色資源的完成調(diào)色板項(xiàng)目的代碼清單_第3頁
Android中使用顏色資源的完成調(diào)色板項(xiàng)目的代碼清單_第4頁
全文預(yù)覽已結(jié)束

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡介

1、Android中使用顏色資源的完成調(diào)色板項(xiàng)目的代碼清單范美英(北京信息職業(yè)技術(shù)學(xué)院)摘 要:Android應(yīng)用開發(fā)中經(jīng)常會(huì)使用到顏色資源用來實(shí)現(xiàn)UI的效果,本文詳細(xì)羅列了使用顏色資源完成調(diào)色板項(xiàng)目的代碼清單。關(guān)鍵詞: Android;顏色資源;調(diào)色板;代碼清單1 MainActivity.java類的代碼package com.book.thirdtestcolor;import android.app.Activity;import android.graphics.Color;import android.os.Bundle;import android.view.View;import

2、android.widget.EditText;import android.widget.LinearLayout;public class MainActivity extends Activity EditText edt_a,edt_r,edt_g,edt_b;LinearLayout color_res;Overrideprotected void onCreate(Bundle savedInstanceState) super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);edt_a=(Ed

3、itText) this.findViewById(R.id.edt_alpha);edt_r=(EditText) this.findViewById(R.id.edt_r);edt_g=(EditText) this.findViewById(R.id.edt_g);edt_b=(EditText) this.findViewById(R.id.edt_b);color_res=(LinearLayout) this.findViewById(R.id.color_res);public void clickOK(View v)int alpha=Integer.parseInt(edt_

4、a.getText().toString();int red=Integer.parseInt(edt_r.getText().toString();int green=Integer.parseInt(edt_g.getText().toString();int blue=Integer.parseInt(edt_b.getText().toString();if(alpha>255|alpha<0)edt_a.getText().clear();edt_a.requestFocus();elseif(red>255|red<0)edt_r.getText().cle

5、ar();edt_r.requestFocus();elseif(green>255|green<0)edt_g.getText().clear();edt_g.requestFocus();elseif(blue>255|blue<0)edt_b.getText().clear();edt_b.requestFocus();elseint color=Color.argb(alpha, red, green, blue);color_res.setBackgroundColor(color);2 res/layout/activity_main.xml的代碼清單<

6、;LinearLayout xmlns:android=" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <EditText android:id="+id/edt_alpha" android:layout_width="match_parent" android:layout_height="wrap

7、_content" android:ems="10" android:hint="請輸入透明度值(0255)" android:inputType="number" > <requestFocus /> </EditText> <EditText android:id="+id/edt_r" android:layout_width="match_parent" android:layout_height="wrap_content&quo

8、t; android:hint="請輸入Red值(0255)" android:ems="10" android:inputType="number" /> <EditText android:id="+id/edt_g" android:layout_width="match_parent" android:layout_height="wrap_content" android:ems="10" android:hint="請輸入

9、Green值(0255)" android:inputType="number" /> <EditText android:id="+id/edt_b" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="請輸入Blue值(0255)" android:ems="10" android:inputType="number&q

10、uot; /> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center"> <Button android:id="+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content" a

11、ndroid:text="確定" android:onClick="clickOK" /> </LinearLayout> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="調(diào)色結(jié)果:" android:textAppearance="?android:attr/textAppearanceLarge" /&g

12、t; <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:id="+id/color_res" android:orientation="horizontal" > </LinearLayout> </LinearLayout>3 res/menu/activity_main.xml的代碼清單<menu xmlns:android=" > <item android:id="+id/menu_settings"

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲(chǔ)空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

最新文檔

評論

0/150

提交評論