Home
last modified time | relevance | path

Searched refs:layoutId (Results 1 – 20 of 20) sorted by relevance

/packages/apps/Messaging/src/com/android/messaging/ui/
DAttachmentPreviewFactory.java152 int layoutId = R.layout.attachment_single_image; in createImagePreview() local
155 layoutId = R.layout.attachment_single_image; in createImagePreview()
158 layoutId = R.layout.attachment_multiple_image; in createImagePreview()
161 layoutId = R.layout.attachment_chooser_image; in createImagePreview()
167 final View view = layoutInflater.inflate(layoutId, parent, false /* attachToRoot */); in createImagePreview()
211 int layoutId = R.layout.attachment_single_vcard; in createVCardPreview() local
214 layoutId = R.layout.attachment_single_vcard; in createVCardPreview()
217 layoutId = R.layout.attachment_multiple_vcard; in createVCardPreview()
220 layoutId = R.layout.attachment_chooser_vcard; in createVCardPreview()
226 final View view = layoutInflater.inflate(layoutId, parent, false /* attachToRoot */); in createVCardPreview()
[all …]
/packages/apps/Launcher3/src/com/android/launcher3/
DAutoInstallsLayout.java87 int layoutId = targetRes.getIdentifier(layoutName, "xml", pkg); in get() local
90 if (layoutId == 0) { in get()
95 layoutId = targetRes.getIdentifier(layoutName, "xml", pkg); in get()
99 if (layoutId == 0) { in get()
101 layoutId = targetRes.getIdentifier(LAYOUT_RES, "xml", pkg); in get()
104 if (layoutId == 0) { in get()
108 return new AutoInstallsLayout(context, appWidgetHost, callback, targetRes, layoutId, in get()
173 int layoutId, String rootTag) { in AutoInstallsLayout() argument
183 mLayoutId = layoutId; in AutoInstallsLayout()
206 protected int parseLayout(int layoutId, ArrayList<Long> screenIds) in parseLayout() argument
[all …]
DDefaultLayoutParser.java53 LayoutParserCallback callback, Resources sourceRes, int layoutId) { in DefaultLayoutParser() argument
54 super(context, appWidgetHost, callback, sourceRes, layoutId, TAG_FAVORITES); in DefaultLayoutParser()
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
DConversationItemViewCoordinates.java158 public View getView(final int layoutId) { in getView() argument
159 return mViewsCache.get(layoutId); in getView()
166 public void put(final int layoutId, final View view) { in put() argument
167 mViewsCache.put(layoutId, view); in put()
249 final int layoutId = R.layout.conversation_item_view; in ConversationItemViewCoordinates() local
251 ViewGroup view = (ViewGroup) cache.getView(layoutId); in ConversationItemViewCoordinates()
253 view = (ViewGroup) LayoutInflater.from(context).inflate(layoutId, null); in ConversationItemViewCoordinates()
254 cache.put(layoutId, view); in ConversationItemViewCoordinates()
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
DSuggestionViewInflater.java47 int layoutId, Context context) { in SuggestionViewInflater() argument
50 mLayoutId = layoutId; in SuggestionViewInflater()
65 int layoutId = mLayoutId; in getView() local
66 convertView = getInflater().inflate(layoutId, parent, false); in getView()
/packages/apps/Launcher3/src/com/android/launcher3/popup/
DPopupPopulator.java65 public final int layoutId; field in PopupPopulator.Item
68 Item(int layoutId, boolean isShortcut) { in Item() argument
69 this.layoutId = layoutId; in Item()
DPopupContainerWithArrow.java248 final View item = inflater.inflate(itemTypeToPopulate.layoutId, this, false); in addDummyViews()
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
DMockKeyboardSwitcher.java66 public static String getLayoutName(final int layoutId) { in getLayoutName() argument
67 switch (layoutId) { in getLayoutName()
75 default: return "UNKNOWN<" + layoutId + ">"; in getLayoutName()
/packages/apps/DocumentsUI/src/com/android/documentsui/sidebar/
DItem.java39 public Item(@LayoutRes int layoutId, String stringId) { in Item() argument
40 mLayoutId = layoutId; in Item()
/packages/apps/Dialer/java/com/android/dialer/app/calllog/
DCallLogModalAlertManager.java48 public View inflate(int layoutId) { in inflate() argument
49 return inflater.inflate(layoutId, parent, false); in inflate()
DCallLogAlertManager.java45 public View inflate(int layoutId) { in inflate() argument
46 return inflater.inflate(layoutId, container, false); in inflate()
/packages/apps/Launcher3/tests/src/com/android/launcher3/testcomponent/
DRequestPinItemActivity.java95 int layoutId = getResources().getIdentifier( in requestWidget() local
97 RemoteViews views = new RemoteViews(getPackageName(), layoutId); in requestWidget()
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/
DSimSelectorView.java76 public void setItemLayoutId(final int layoutId) { in setItemLayoutId() argument
77 mItemLayoutId = layoutId; in setItemLayoutId()
/packages/apps/Contacts/src/com/android/contacts/list/
DJoinContactListAdapter.java176 private View inflate(int layoutId, ViewGroup parent) { in inflate() argument
177 return LayoutInflater.from(getContext()).inflate(layoutId, parent, false); in inflate()
/packages/apps/Settings/src/com/android/settings/datetime/
DZonePicker.java83 boolean sortedByName, int layoutId) { in constructTimezoneAdapter() argument
98 layoutId, in constructTimezoneAdapter()
/packages/services/Car/tests/InstrumentClusterRendererSample/src/com/android/car/cluster/sample/cards/
DCardView.java136 protected void inflate(int layoutId) { in inflate() argument
137 inflate(getContext(), layoutId, (ViewGroup) getChildAt(0)); in inflate() local
/packages/apps/DocumentsUI/src/com/android/documentsui/
DBaseActivity.java104 public BaseActivity(@LayoutRes int layoutId, String tag) { in BaseActivity() argument
105 mLayoutId = layoutId; in BaseActivity()
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/preprovisioning/
DPreProvisioningActivity.java269 public void initiateUi(int layoutId, int titleId, String packageLabel, Drawable packageIcon, in initiateUi() argument
281 layoutId, in initiateUi()
/packages/apps/Dialer/java/com/android/dialer/app/alert/
DAlertManager.java25 View inflate(int layoutId); in inflate() argument
/packages/apps/Launcher3/src/com/android/launcher3/shortcuts/
DShortcutsItemView.java187 widgetsView = mLauncher.getLayoutInflater().inflate(widgetsItem.layoutId, this, false); in enableWidgetsIfExist()