문제

Just as the title says. I know there are drawables in android.R.drawables, but because they are so small, they look horrible when scaled up. Does anyone know where I can find the current 4.x drawables that are larger than the ones in the folder?

Since I don't know much about drawables anyways, are the stock drawables in android.R.drawables all in a single size, or are there multiple versions to support different density screens? If so, how can I access these larger drawables?

도움이 되었습니까?

해결책

Does anyone know where I can find the current 4.x drawables that are larger than the ones in the folder?

If you mean larger than the -xhdpi ones, they are probably on some graphic designer's workstation at Google.

are the stock drawables in android.R.drawables all in a single size, or are there multiple versions to support different density screens?

They ship in multiple densities.

If so, how can I access these larger drawables?

They are in your SDK directory, in platforms/$VERSION/data/res/, where $VERSION is one of the available API levels that you have installed.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top