安卓需要注意的小细节

时间:2014-09-10 15:56:30   收藏:0   阅读:228

1. 怎样给listview添加整体的背景图?

      在listview.xml或者listview_item.xml文件中添加背景图是不行的,我在代码中添加成功。

     

   ListView listview = (ListView) findViewById(R.id.istview);
   Resources res = getResources();  
   Drawable drawable = res.getDrawable(R.drawable.background);  
   listView.setBackgroundDrawable(drawable);


原文:http://blog.csdn.net/u010127250/article/details/39180963

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!