0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

AndroidStudio内のリソースファイルの置き場と利用方法

Posted at

はじめに

Androidエンジニアとして初心者だった頃に、取り込んだ画像の置き場所がわからない
文字列を入力する場所ってどこだっけ?
となった経験があることを思い出したので、それぞれのリソースファイルの置き場所とそれの使い方等を表にして記事に残そうと思います。

フォルダ 説明 利用例
/res/values/ 色(Color) R.color.red
色(ColorDrawable) R.drawable.red
寸法 R.dimen.one_pixel
テーマ 又は、スタイル R.style.Theme_CommonTheme
文字列 R.string.text
/res/drawable/ Bitmap(.bmp)、JPEG(.jpg)、PNG(.png)、GIF(.gif) R.drawable.gazou
/res/layout/ レイアウト R.layout.main_layout
/res/anim/ アニメーション R.anim.spin
/res/raw/ バイナリ R.raw.hoge
/res/xml/ XML R.xml.hoge_xml
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?