/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowRemoteViews.java | 44 public void setTextViewText(int viewId, final CharSequence text) { 45 viewUpdaters.add(new ViewUpdater(viewId) { 54 public void setOnClickPendingIntent(int viewId, final PendingIntent pendingIntent) { 55 viewUpdaters.add(new ViewUpdater(viewId) { 72 public void setViewVisibility(int viewId, final int visibility) { 73 viewUpdaters.add(new ViewUpdater(viewId) { 82 public void setImageViewResource(int viewId, final int resourceId) { 83 viewUpdaters.add(new ViewUpdater(viewId) { 92 public void setImageViewBitmap(int viewId, final Bitmap bitmap) { 93 viewUpdaters.add(new ViewUpdater(viewId) { [all...] |
ShadowTabSpec.java | 21 private int viewId; 104 public android.widget.TabHost.TabSpec setContent(int viewId) { 105 this.viewId = viewId; 110 return viewId;
|
ShadowDialog.java | 151 public View findViewById(int viewId) { 153 return inflatedView.findViewById(viewId); 157 return inflatedView.findViewById(viewId); 162 public void clickOn(int viewId) { 163 findViewById(viewId).performClick();
|
ShadowListView.java | 41 private View findView(List<View> views, int viewId) { 44 child = v.findViewById(viewId);
|
/frameworks/support/v4/jellybean-mr2/android/support/v4/view/accessibility/ |
AccessibilityNodeInfoCompatJellybeanMr2.java | 23 public static void setViewIdResourceName(Object info, String viewId) { 24 ((AccessibilityNodeInfo) info).setViewIdResourceName(viewId);
|
/packages/apps/Email/src/com/android/email/activity/ |
UiUtilities.java | 71 public static <T extends View> T getViewOrNull(Activity parent, int viewId) { 72 return (T) parent.findViewById(viewId); 77 public static <T extends View> T getViewOrNull(View parent, int viewId) { 78 return (T) parent.findViewById(viewId); 85 public static <T extends View> T getView(Activity parent, int viewId) { 86 return (T) checkView(parent.findViewById(viewId)); 93 public static <T extends View> T getView(View parent, int viewId) { 94 return (T) checkView(parent.findViewById(viewId)); 116 public static void setVisibilitySafe(Activity parent, int viewId, int visibility) { 117 setVisibilitySafe(parent.findViewById(viewId), visibility) [all...] |
/frameworks/base/core/java/android/widget/ |
RemoteViews.java | 269 return (getActionName() + viewId); 272 int viewId; 325 int viewId; 330 SetEmptyView(int viewId, int emptyViewId) { 331 this.viewId = viewId; 336 this.viewId = in.readInt(); 342 out.writeInt(this.viewId); 348 final View view = root.findViewById(viewId); 366 this.viewId = id [all...] |
/device/google/accessory/demokit/app/src/com/google/android/DemoKit/ |
OutputController.java | 27 private void setupServoController(int servoIndex, int viewId) { 29 sc.attachToView((ViewGroup) findViewById(viewId)); 32 private void setupLedController(int index, int viewId) { 35 ledC.attachToView((ViewGroup) findViewById(viewId)); 38 private void setupRelayController(int index, int viewId) { 41 r.attachToView((ViewGroup) findViewById(viewId));
|
InputController.java | 107 int viewId, onImageId, offImageId; 110 viewId = R.id.Button1; 115 viewId = R.id.Button2; 120 viewId = R.id.Button3; 125 viewId = R.id.Button4; 130 mTargetView = (ImageView) findViewById(viewId);
|
/packages/apps/CertInstaller/src/com/android/certinstaller/ |
ViewHelper.java | 39 String getText(int viewId) { 40 return ((TextView) mView.findViewById(viewId)).getText().toString(); 43 void setText(int viewId, String text) { 45 TextView v = (TextView) mView.findViewById(viewId); 49 void setText(int viewId, int textId) { 50 TextView v = (TextView) mView.findViewById(viewId);
|
/packages/apps/Contacts/src/com/android/contacts/util/ |
DialogManager.java | 39 * ViewId are forwarded to {@link DialogManager#onCreateDialog(int, Bundle)}</li> 69 final int viewId = view.getId(); 73 if (viewId == View.NO_ID) { 74 throw new IllegalArgumentException("View does not have a proper ViewId"); 76 bundle.putInt(VIEW_ID_KEY, viewId); 94 throw new IllegalArgumentException("Bundle does not contain a ViewId"); 96 final int viewId = bundle.getInt(VIEW_ID_KEY); 97 final View view = mActivity.findViewById(viewId);
|
/frameworks/base/core/java/com/android/internal/appwidget/ |
IAppWidgetHost.aidl | 28 void viewDataChanged(int appWidgetId, int viewId, int userId);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/ |
EclipseUiHelper.java | 44 * @param viewId One of {@link #CONTENT_OUTLINE_VIEW_ID}, {@link #PROPERTY_SHEET_VIEW_ID}. 48 public static void showView(String viewId, boolean activate) { 54 IViewPart part = page.showView(viewId,
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/ |
PassFailButtons.java | 75 void setInfoResources(int titleId, int messageId, int viewId); 96 public void setInfoResources(int titleId, int messageId, int viewId) { 97 setInfo(this, titleId, messageId, viewId); 129 public void setInfoResources(int titleId, int messageId, int viewId) { 130 setInfo(this, titleId, messageId, viewId); 163 public void setInfoResources(int titleId, int messageId, int viewId) { 164 setInfo(this, titleId, messageId, viewId); 203 final int messageId, final int viewId) { 210 showInfoDialog(activity, titleId, messageId, viewId); 216 showInfoDialog(activity, titleId, messageId, viewId); [all...] |
/packages/apps/InCallUI/src/com/android/incallui/ |
DialpadFragment.java | 309 int viewId = v.getId(); 310 if (mDisplayMap.containsKey(viewId)) { 314 getPresenter().processDtmf(mDisplayMap.get(viewId)); 331 int viewId = v.getId(); 334 if (mDisplayMap.containsKey(viewId)) { 339 getPresenter().processDtmf(mDisplayMap.get(viewId)); 449 for (int viewId : mDisplayMap.keySet()) { 451 button = parent.findViewById(viewId);
|
/development/apps/Development/src/com/android/development/ |
AppHwPref.java | 93 void displayFlag(int viewId, int flagMask, ConfigurationInfo[] appHwPref) { 106 displayTextView(viewId, "true"); 108 displayTextView(viewId, "false"); 127 void displayTextView(int viewId, ConfigurationInfo[] config, int type) { 160 TextView tView = (TextView)findViewById(viewId);
|
PermissionDetails.java | 239 private void setProtectionLevel(int viewId, int protectionLevel) { 252 setTextView(viewId, levelStr); 255 private void setTextView(int viewId, int textId) { 256 TextView view = (TextView)findViewById(viewId); 260 private void setTextView(int viewId, String text) { 261 TextView view = (TextView)findViewById(viewId);
|
/frameworks/opt/photoviewer/src/com/android/ex/photo/adapters/ |
BaseCursorPagerAdapter.java | 207 protected String makeFragmentName(int viewId, int index) { 209 return "android:pager:" + viewId + ":" + mCursor.getString(mRowIDColumn).hashCode(); 211 return super.makeFragmentName(viewId, index);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/ |
ExplodedRenderingHelper.java | 290 String viewId = getAttribute(node, "id", attributes); //$NON-NLS-1$ 300 if (viewId != null) { 302 list = getMatchingNode(nodeSet, cleanUpIdReference(viewId), inverseRelation); 357 String viewId = getAttribute(node, "id", null); //$NON-NLS-1$ 358 if (viewId != null) { 359 map.put(cleanUpIdReference(viewId), node);
|
/frameworks/base/core/java/android/accessibilityservice/ |
IAccessibilityServiceConnection.aidl | 43 long accessibilityNodeId, String viewId, int interactionId,
|
/frameworks/base/core/java/android/view/accessibility/ |
IAccessibilityInteractionConnection.aidl | 36 void findAccessibilityNodeInfosByViewId(long accessibilityNodeId, String viewId,
|
/frameworks/support/v13/java/android/support/v13/app/ |
FragmentPagerAdapter.java | 176 private static String makeFragmentName(int viewId, long id) { 177 return "android:switcher:" + viewId + ":" + id;
|
/frameworks/support/v4/java/android/support/v4/app/ |
FragmentPagerAdapter.java | 172 private static String makeFragmentName(int viewId, long id) { 173 return "android:switcher:" + viewId + ":" + id;
|
/packages/apps/UnifiedEmail/src/com/android/mail/widget/ |
WidgetConversationListItemViewBuilder.java | 92 int viewId = getFolderViewId(displayedFolder); 93 if (viewId == 0) { 96 remoteViews.setViewVisibility(viewId, View.VISIBLE); 99 remoteViews.setImageViewBitmap(viewId, bitmap);
|
/development/cmds/monkey/src/com/android/commands/monkey/ |
MonkeySourceNetworkViews.java | 139 int viewId = Integer.parseInt(viewString); 142 return client.findAccessibilityNodeInfoByAccessibilityId(connectionId, windowId, viewId, 146 private static AccessibilityNodeInfo getNodeByViewId(String viewId) throws MonkeyViewException { 151 AccessibilityNodeInfo.ROOT_NODE_ID, viewId); 195 //queryview viewid button1 gettext 204 if ("viewid".equals(idType)) { 288 //queryview viewid button1 getlocation 310 //queryview viewid button1 gettext 334 //queryview viewid button1 getclass 348 //queryview viewid button1 getchecke [all...] |