真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

10天學通Android開發(fā)(6)-資源訪問-創(chuàng)新互聯(lián)

創(chuàng)新互聯(lián)建站主要從事成都網(wǎng)站設(shè)計、成都做網(wǎng)站、網(wǎng)頁設(shè)計、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)霍邱,10年網(wǎng)站建設(shè)經(jīng)驗,價格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):13518219792
  1. 字符串資源

    自動生成目錄 :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

   "red">#f00

   "green">#0f0

 

調(diào)用自己定義:

  android:background="@Color/red"

調(diào)用操作系統(tǒng):

android:background="@Android:Color/black"

 

3、數(shù)組資源

創(chuàng)建Value類型的xml文件:

   "arr">

       hello

   baba

   

調(diào)用:

      String[] arr=getResources().getStringArray(R.array.arr);

       for(String string : arr)

        System.out.println(string);

"@array/arr" />

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下默認生成了菜單項:

"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">

   

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

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部