私は自分のAndroidアプリに広告主システムを組み込むことを試みています。プロジェクトリソースフォルダにコピーするように指示されたファイルの選択があります(ディレクトリのツリー内にあります)。ほとんどのファイルとディレクトリは理にかなっています...「描画可能な」ディレクトリ内に(予想されるPNGファイルとともに)XMLファイルの選択肢があるという事実を除いて。私には、これはコックアップのように見えます。確かに、すべてのXMLファイルは「layout」ディレクトリ内にある必要がありますか?
質問する
651 次
1 に答える
3
No, it's perfectly valid. You can have XML drawables see docs about this here - read about it - these are quite powerful and flexible. Moreover, you should avoid putting other types than XML based drawables into res/drawables
folder. All the bitmaps should be stored into res/drawables-<QUALIFIER>
(i.e. res/drawables-hdpi
, res/drawables-mdpi
etc folders).
于 2012-11-19T16:29:26.520 に答える