HomeSort by relevance Sort by last modified time
    Searched refs:mIconView (Results 1 - 6 of 6) sorted by null

  /packages/apps/Mms/src/com/android/mms/ui/
DeliveryReportListItem.java 39 private ImageView mIconView;
52 mIconView = (ImageView) findViewById(R.id.icon);
77 mIconView.setImageResource(R.drawable.ic_sms_mms_delivered);
79 mIconView.setImageResource(R.drawable.ic_sms_mms_not_delivered);
81 mIconView.setImageResource(R.drawable.ic_sms_mms_pending);
84 mIconView.setImageResource(R.drawable.ic_sms_mms_not_delivered);
  /frameworks/base/core/java/com/android/internal/view/menu/
ListMenuItemView.java 40 private ImageView mIconView;
203 if (mIconView == null && icon == null && !mPreserveIconSpacing) {
207 if (mIconView == null) {
212 mIconView.setImageDrawable(showIcon ? icon : null);
214 if (mIconView.getVisibility() != VISIBLE) {
215 mIconView.setVisibility(VISIBLE);
218 mIconView.setVisibility(GONE);
224 if (mIconView != null && mPreserveIconSpacing) {
227 LayoutParams iconLp = (LayoutParams) mIconView.getLayoutParams();
237 mIconView = (ImageView) inflater.inflate(com.android.internal.R.layout.list_menu_item_icon
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
ScrollingTabContainerView.java 361 private ImageView mIconView;
402 if (mIconView != null) {
403 mIconView.setVisibility(GONE);
404 mIconView.setImageDrawable(null);
416 if (mIconView == null) {
423 mIconView = iconView;
425 mIconView.setImageDrawable(icon);
426 mIconView.setVisibility(VISIBLE);
427 } else if (mIconView != null) {
428 mIconView.setVisibility(GONE)
    [all...]
ActionBarView.java     [all...]
  /frameworks/base/core/java/com/android/internal/app/
AlertController.java 107 private ImageView mIconView;
334 if (mIconView != null) {
336 mIconView.setImageResource(mIconId);
338 mIconView.setVisibility(View.GONE);
345 if ((mIconView != null) && (mIcon != null)) {
346 mIconView.setImageDrawable(icon);
461 mIconView = (ImageView) mWindow.findViewById(R.id.icon);
473 mIconView.setImageResource(mIconId);
475 mIconView.setImageDrawable(mIcon);
481 mTitleView.setPadding(mIconView.getPaddingLeft()
    [all...]
  /packages/apps/Browser/src/com/android/browser/
TabBar.java 249 ImageView mIconView;
273 mIconView = (ImageView) mTabContent.findViewById(R.id.favicon);
315 mIconView.setVisibility(mSelected ? View.GONE : View.VISIBLE);
337 mIconView.setImageDrawable(d);

Completed in 115 milliseconds