Android 从drawable-hdpi中获取图标显示在ImageView上
Posted 彬sir哥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android 从drawable-hdpi中获取图标显示在ImageView上相关的知识,希望对你有一定的参考价值。
android 从drawable-hdpi中获取图标显示在ImageView上
ImageView imageview = (ImageView) findViewById(R.id.xxx);
Drawable drawable = MainActivity.this.getResources().getDrawable(R.drawable.xxx.png);
imageview.setBackground(drawable);
以上是关于Android 从drawable-hdpi中获取图标显示在ImageView上的主要内容,如果未能解决你的问题,请参考以下文章
如何将android位图别名为另一个尺寸的drawable(drawable-large-mdpi别名为drawable-hdpi)