字符串資源
自動生成目錄 :Values,生成了三個
App_name: AndroidManifest.xml使用了
hello_world:activity_main.xml
代碼讀?。?/p>
Stringstr=getResources().getString(R.string.app_name);
// System.out.println(str);
tv=(TextView)findViewById(R.id.tv)
tv.setText(R.string.app_name);
2、顏色資源
android:background="#FF0000",可簡化"#F00"
不透明:"#FF00",半透明:"#8F00"
可添加資源:Android xml File類型:value
調(diào)用自己定義:
android:background="@Color/red"
調(diào)用操作系統(tǒng):
android:background="@Android:Color/black"
3、數(shù)組資源
創(chuàng)建Value類型的xml文件:
調(diào)用:
String[] arr=getResources().getStringArray(R.array.arr);
for(String string : arr)
System.out.println(string);
4 Drawable資源
AndroidManifest.xml中:android:icon="@drawable/ic_launcher"
不分分辯率,創(chuàng)建drawable目錄:
拷進png文件:20150103122610.png
圖片按鈕,如:
android:id="@+id/p_w_picpathView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/20150103122610" /> 其它按鈕背景: android:background="@drawable/20150103122610" 5 菜單資源 在menu下默認生成了菜單項: xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" tools:context="com.example.resource6.MainActivity"> android:id="@+id/action_settings" android:orderInCategory="100" android:title="@string/action_settings" app:showAsAction="never"/> 可重寫菜單項,菜單的點擊事件如下: @verride publicboolean onOptionsItemSelected(MenuItemitem) { switch(item.getItemId()){ case R.id.action_settings: new AlertDialog.Builder(this).setTitile("標題").setMessage("對話框").setPositiveButton("關(guān)閉",null).show(); break; case R.id.action_bar Toast.makeText(this, "消息", Toast_LENTH_SHORT).show(); break; default: break; } } 另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。
文章標題:10天學通Android開發(fā)(6)-資源訪問-創(chuàng)新互聯(lián)
當前路徑:http://weahome.cn/article/coopdp.html