0

レイアウトファイルに追加してstyleのを変更する方法を示すチュートリアルを見つけました。Buttonandroid:background="@drawable/btn_green"xml

私は追加しようとしました:

<Button
    android:id="@+id/my_button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/hello" 
    android:background="@drawable/btn_green"/>

xmlファイルに次のようなエラーが表示されますerror: Error: No resource found that matches the given name (at 'background' with value '@drawable/btn_green').

チュートリアルは、私がする必要があると言いましたimport the Backgrounds project into Eclipse by choosing the Import option from the File menu.

行ってみFile > Importましたが、背景と関係があるものが見つかりません。

誰かが私がする必要があることを提案できますか?

4

3 に答える 3

0

「btn_green」という名前の画像がdrawable-*dpiフォルダーにあることを確認してください

于 2012-06-30T14:50:17.407 に答える
0

ドローアブル フォルダーの btn_green にファイルを追加する プロジェクトを更新し、クリーン & ビルドする

于 2012-06-30T14:50:47.327 に答える
0

フォルダに名前の付いたError: No resource found that matches the given name画像がないため、これが発生しています。btn_greendrawable

そして、をクリックすると画像が変わるといいと思いますButton。そのためには、ファイルでselector属性を使用する必要があります。そのためには、この投稿xmlを読んでください。

于 2012-08-29T06:27:55.153 に答える