Searched defs:layoutId (Results 1 - 8 of 8) sorted by relevance

/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
H A DSuggestionViewInflater.java43 * @param layoutId resource ID of layout to use.
47 int layoutId, Context context) {
50 mLayoutId = layoutId;
65 int layoutId = mLayoutId;
66 convertView = getInflater().inflate(layoutId, parent, false);
46 SuggestionViewInflater(String viewType, Class<? extends SuggestionView> viewClass, int layoutId, Context context) argument
/packages/apps/Contacts/src/com/android/contacts/list/
H A DJoinContactListAdapter.java179 private View inflate(int layoutId, ViewGroup parent) { argument
180 return LayoutInflater.from(getContext()).inflate(layoutId, parent, false);
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/
H A DSimSelectorView.java76 public void setItemLayoutId(final int layoutId) { argument
77 mItemLayoutId = layoutId;
/packages/apps/Launcher3/src/com/android/launcher3/
H A DDefaultLayoutParser.java53 LayoutParserCallback callback, Resources sourceRes, int layoutId) {
54 super(context, appWidgetHost, callback, sourceRes, layoutId, TAG_FAVORITES);
58 LayoutParserCallback callback, Resources sourceRes, int layoutId, String rootTag) {
59 super(context, appWidgetHost, callback, sourceRes, layoutId, rootTag);
52 DefaultLayoutParser(Context context, AppWidgetHost appWidgetHost, LayoutParserCallback callback, Resources sourceRes, int layoutId) argument
57 DefaultLayoutParser(Context context, AppWidgetHost appWidgetHost, LayoutParserCallback callback, Resources sourceRes, int layoutId, String rootTag) argument
H A DAutoInstallsLayout.java87 int layoutId = targetRes.getIdentifier(layoutName, "xml", pkg);
90 if (layoutId == 0) {
95 layoutId = targetRes.getIdentifier(layoutName, "xml", pkg);
99 if (layoutId == 0) {
101 layoutId = targetRes.getIdentifier(LAYOUT_RES, "xml", pkg);
104 if (layoutId == 0) {
108 return new AutoInstallsLayout(context, appWidgetHost, callback, targetRes, layoutId,
173 int layoutId, String rootTag) {
183 mLayoutId = layoutId;
206 protected int parseLayout(int layoutId, ArrayLis argument
171 AutoInstallsLayout(Context context, AppWidgetHost appWidgetHost, LayoutParserCallback callback, Resources res, int layoutId, String rootTag) argument
[all...]
/packages/apps/Settings/src/com/android/settings/
H A DZonePicker.java84 boolean sortedByName, int layoutId) {
94 layoutId,
83 constructTimezoneAdapter(Context context, boolean sortedByName, int layoutId) argument
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
H A DMockKeyboardSwitcher.java66 public static String getLayoutName(final int layoutId) { argument
67 switch (layoutId) {
75 default: return "UNKNOWN<" + layoutId + ">";
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DConversationItemViewCoordinates.java158 public View getView(final int layoutId) { argument
159 return mViewsCache.get(layoutId);
166 public void put(final int layoutId, final View view) { argument
167 mViewsCache.put(layoutId, view);
249 final int layoutId = R.layout.conversation_item_view;
251 ViewGroup view = (ViewGroup) cache.getView(layoutId);
253 view = (ViewGroup) LayoutInflater.from(context).inflate(layoutId, null);
254 cache.put(layoutId, view);

Completed in 376 milliseconds