android-resources

    3熱度

    1回答

    我試圖用drawable文件夾中的圖片創建一個自定義視圖。 程序從文件夾中選擇的圖片取決於客戶端,因此我需要使用變量來訪問R文件。 做了研究後,我發現,這樣做是這樣的: String uriName = ":drawable/"+thisCard.getKind()+thisCard.getNumber(); int idUri = getResources().getIdentifier(ur

    -2熱度

    1回答

    我想維護一個單一的文件,所有的錯誤代碼和字符串。我需要這個文件不斷更新,當任何錯誤代碼或字符串改變我的android應用程序。是否有更好的方式來維護這樣的android應用程序的文件。我想鏈接這個錯誤代碼(int)與string.xml中的資源文件中的字符串。請幫助我們。 感謝 AnkiReddy

    -7熱度

    1回答

    我想從我的strings.xml文件中獲取數組。 我設置了Spinners和Buttons。 <string-array name="angles"> <item value="1">Radian</item> <item value="(Math.PI/3200)">Mil</item> <item value="(Math.PI/200)">Grad</item>

    1熱度

    1回答

    我有一個捫 <dimen name="fab_margin">16dp</dimen> 我想加fab_margin,android:attr/actionBarSize? 這樣 <dimen name="fab_margin_fragment">(@dimen/fab_margin)+(?android:attr/actionBarSize)</dimen>

    0熱度

    1回答

    我需要將圖像添加到我的相對佈局中。我發現了一張足夠大的圖片(1129x1489)。然後我通過這些步驟輸入圖像。 右鍵點擊資源,新圖像資源 選擇啓動圖標(因爲我希望我的形象有顏色) 在資產類型選擇圖片 選擇圖片路徑 指定名稱並完成 的圖像將隨後在紋理貼圖保存像這樣 然而,當添加到佈局是非常小的,拉伸時(當設置爲match_parent或fill_parent)變得模糊。 使用的代碼: <ImageV

    0熱度

    2回答

    我有了黑色的深淺不同在不同的地方可繪製資源不同的顏色 繪製對象代碼: <vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="24.0" androi

    1熱度

    2回答

    可變string.xml我有在String.xml <string name="id">4</string> 一個字符串值,我有其中包含一個變量 public static int Id=1; 現在什麼一類我需要的是我想要在Gradle中獲取這兩個值中的任何一個,它將檢查條件並根據條件重命名我的應用程序。下面給出的是gradle這個代碼的一部分 def identifier //here

    0熱度

    1回答

    我有一個奇怪的問題。我試圖從我的Android項目中的res/drawable文件夾中使用PNG文件,並在ImageButton中使用這種PNG文件(它具有「setImageBitmap(Bitmap bm)」方法),我需要解碼PNG圖像我有我的res/drawable文件。然而,當我複製路徑,並嘗試像這樣對其進行解碼: public Bitmap getBitMap() { retur

    1熱度

    1回答

    我使用以下代碼來定義按鈕背景: TypedArray bottombuttons = res.obtainTypedArray(R.array.bottombuttons); button0.setBackgroundResource(bottombuttons .getResourceId(index, 1)); 其中index是可變來自共享活動 int index = themePre

    0熱度

    1回答

    我有一個字符串資源: strings.xml <resources> <string name="myString">stringName</string> </resources> 我如何從非活動類的字符串? 我不能做getResources().getString(R.string.myString)