2012-04-17 7 views
0

を描画可能を取得し、どのように私は描画可能 OBJを得ることができますか?以下のように xmlファイル:は私が<strong>資産</strong>フォルダの背景<strong>XML</strong> DESCファイルを持っている資産のxmlファイルから

<?xml version="1.0" encoding="utf-8"?> 

<item android:state_focused="false"> 
    <shape> 
     <gradient android:startColor="#2b2c2d" android:endColor="#404142" android:angle="270" /> 
    </shape> 
</item> 
<item android:state_focused="true"> 
    <shape> 
     <gradient android:startColor="#2b2c2d" android:endColor="#404142" android:angle="270" /> 
    </shape> 
</item> 

答えて

1

ちょうど描画可能なフォルダにファイルを配置します(コード経由)R.drawwable.filenameとして、そこからそれを得ることができます@ drawable/yourfilename(XMLを使用)。

通常、assets.xmlファイルをassetsフォルダに配置しないでください。資産フォルダで、我々は一般的に、あなたのレイアウトでカスタムフォント、オーディオファイル、ビデオファイルなど

0

を置くので、のような背景として、あなたは描画可能に設定することができます。彼は、ファイルを持っているので

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:background="@drawable/drawable_name_without_the_.xml" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"/> 
+1

を使用することはできませんですアセットフォルダではなく、アセットフォルダです。 –

関連する問題