HomeSort by relevance Sort by last modified time
    Searched defs:contentView (Results 1 - 25 of 28) sorted by null

1 2

  /development/samples/ApiDemos/src/com/example/android/apis/app/
StatusBarNotifications.java 217 // can set the contentView field to your own RemoteViews object.
231 RemoteViews contentView = new RemoteViews(getPackageName(), R.layout.status_bar_balloon);
232 contentView.setTextViewText(R.id.text, text);
233 contentView.setImageViewResource(R.id.icon, moodId);
234 notif.contentView = contentView;
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppBtErrorActivity.java 74 TextView contentView = (TextView)view.findViewById(R.id.content);
75 contentView.setText(mErrorContent);
BluetoothOppBtEnableActivity.java 71 TextView contentView = (TextView)view.findViewById(R.id.content);
72 contentView.setText(getString(R.string.bt_enable_line1) + "\n\n"
BluetoothOppBtEnablingActivity.java 97 TextView contentView = (TextView)view.findViewById(R.id.progress_info);
98 contentView.setText(getString(R.string.enabling_progress_content));
  /frameworks/base/core/java/android/app/
Notification.java 157 public RemoteViews contentView;
375 contentView = RemoteViews.CREATOR.createFromParcel(parcel);
417 if (this.contentView != null) {
418 that.contentView = this.contentView.clone();
482 if (contentView != null) {
484 contentView.writeToParcel(parcel, 0);
537 * Sets the {@link #contentView} field to be a view with the standard "Latest Event"
557 RemoteViews contentView = new RemoteViews(context.getPackageName(),
560 contentView.setImageViewResource(R.id.icon, this.icon)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/detail/
StreamItemAdapter.java 112 final View contentView = view.findViewById(R.id.stream_item_content);
117 contentView.setTag(streamItem);
118 contentView.setFocusable(true);
119 contentView.setOnClickListener(mItemClickListener);
120 contentView.setEnabled(true);
122 contentView.setTag(null);
123 contentView.setFocusable(false);
124 contentView.setOnClickListener(null);
126 contentView.setClickable(false);
127 contentView.setEnabled(false)
    [all...]
  /packages/apps/Phone/src/com/android/phone/
NotificationMgr.java     [all...]
  /frameworks/base/tests/BrowserPowerTest/src/com/android/browserpowertest/
PowerTestActivity.java 68 LinearLayout contentView = new LinearLayout(this);
69 contentView.setOrientation(LinearLayout.VERTICAL);
70 setContentView(contentView);
83 contentView.addView(webView, new LayoutParams(
  /packages/apps/Stk/src/com/android/stk/
StkAppService.java 727 RemoteViews contentView = new RemoteViews(
736 contentView.setTextViewText(com.android.internal.R.id.text,
740 contentView.setImageViewBitmap(com.android.internal.R.id.icon,
743 contentView
748 notification.contentView = contentView;
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
ReliabilityTestActivity.java 72 LinearLayout contentView = new LinearLayout(this);
73 contentView.setOrientation(LinearLayout.VERTICAL);
74 setContentView(contentView);
87 contentView.addView(webView, new LayoutParams(
TestShellActivity.java 142 LinearLayout contentView = new LinearLayout(this);
143 contentView.setOrientation(LinearLayout.VERTICAL);
144 setContentView(contentView);
155 contentView.addView(mWebView, new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT, 0.0f));
    [all...]
  /frameworks/base/core/java/android/preference/
DialogPreference.java 285 View contentView = onCreateDialogView();
286 if (contentView != null) {
287 onBindDialogView(contentView);
288 mBuilder.setView(contentView);
  /cts/tests/tests/widget/src/android/widget/cts/
PopupWindowTest.java 143 TextView contentView = new TextView(mActivity);
144 mPopupWindow = new PopupWindow(contentView);
145 assertSame(contentView, mPopupWindow.getContentView());
147 mPopupWindow = new PopupWindow(contentView, 0, 0);
150 assertSame(contentView, mPopupWindow.getContentView());
152 mPopupWindow = new PopupWindow(contentView, 50, 50);
155 assertSame(contentView, mPopupWindow.getContentView());
157 mPopupWindow = new PopupWindow(contentView, -1, -1);
160 assertSame(contentView, mPopupWindow.getContentView());
162 mPopupWindow = new PopupWindow(contentView, 0, 0, true)
    [all...]
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
ConnectivityManagerTestActivity.java 218 LinearLayout contentView = new LinearLayout(this);
219 contentView.setOrientation(LinearLayout.VERTICAL);
220 setContentView(contentView);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PhoneStatusBar.java 603 final RemoteViews oldContentView = oldNotification.notification.contentView;
605 final RemoteViews contentView = notification.notification.contentView;
612 + " contentView=" + oldContentView
616 + " contentView=" + contentView);
623 && contentView != null && oldContentView != null
624 && contentView.getPackage() != null
626 && oldContentView.getPackage().equals(contentView.getPackage())
627 && oldContentView.getLayoutId() == contentView.getLayoutId()
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
TabletStatusBar.java     [all...]
  /prebuilt/darwin-x86_64/swt/
swt.jar 
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/12/
android.jar 
  /prebuilt/sdk/14/
android.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 

Completed in 517 milliseconds

1 2