Android, How to add a bitmap layer over another bitmap layer, dynamically from list?
问题 In my application, I have a list adapter. each row includes an imageView in left and two textViews in right. For getting images I'm using Universal-Image-Loader library. my getView() method is this: @Override public View getView(int position, View convertView, ViewGroup parent) { ViewHolder holder; if (convertView == null) { convertView = myInflater.inflate(R.layout.list_news_adapter, null); holder = new ViewHolder(); holder.ivIcon = (ImageView) convertView.findViewById(R.id.list_news_icon);