網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)!專注于網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站建設(shè)、微信開(kāi)發(fā)、微信小程序定制開(kāi)發(fā)、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了特克斯免費(fèi)建站歡迎大家使用!
字符串資源
自動(dòng)生成目錄 :Values,生成了三個(gè)
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",可簡(jiǎn)化"#F00"
不透明:"#FF00",半透明:"#8F00"
可添加資源:Android xml File類型:value
<resources>
<Color name="red">#f00</Color>
<Color name="green">#0f0</Color>
</resources>
調(diào)用自己定義:
android:background="@Color/red"
調(diào)用操作系統(tǒng):
android:background="@Android:Color/black"
3、數(shù)組資源
創(chuàng)建Value類型的xml文件:
<resources>
<string-array name="arr">
<item >hello</item>
<item >baba</item>
</string-array>
</resources>
調(diào)用:
String[] arr=getResources().getStringArray(R.array.arr);
for(String string : arr)
System.out.println(string);
<ListView entries="@array/arr" />
4 Drawable資源
AndroidManifest.xml中:android:icon="@drawable/ic_launcher"
不分分辯率,創(chuàng)建drawable目錄:
拷進(jìn)png文件:20150103122610.png
圖片按鈕,如:
<ImageView
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下默認(rèn)生成了菜單項(xiàng):
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
tools:context="com.example.resource6.MainActivity">
<item
android:id="@+id/action_settings"
android:orderInCategory="100"
android:title="@string/action_settings"
app:showAsAction="never"/>
</menu>
可重寫菜單項(xiàng),菜單的點(diǎn)擊事件如下:
@verride
publicboolean onOptionsItemSelected(MenuItemitem)
{
switch(item.getItemId()){
case R.id.action_settings:
new AlertDialog.Builder(this).setTitile("標(biāo)題").setMessage("對(duì)話框").setPositiveButton("關(guān)閉",null).show();
break;
case R.id.action_bar
Toast.makeText(this,"消息", Toast_LENTH_SHORT).show();
break;
default:
break;
}
}
名稱欄目:10天學(xué)通Android開(kāi)發(fā)(6)-資源訪問(wèn)
網(wǎng)站路徑:http://jinyejixie.com/article2/pgggic.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供定制網(wǎng)站、商城網(wǎng)站、外貿(mào)建站、網(wǎng)站內(nèi)鏈、、電子商務(wù)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)