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

/packages/apps/Dialer/java/com/android/dialer/app/alert/
H A DAlertManager.java24 /** Inflates <code>layoutId</code> into a view that is ready to be inserted as an alert. */
25 View inflate(int layoutId); argument
/packages/apps/Car/Media/src/com/android/car/media/browse/
H A DBrowseItemViewType.java43 BrowseItemViewType(@LayoutRes int layoutId) { argument
44 mLayoutId = layoutId;
51 BrowseItemViewType(@LayoutRes int layoutId, int spanSize) { argument
52 mLayoutId = layoutId;
/packages/apps/Dialer/java/com/android/dialer/app/calllog/
H A DCallLogAlertManager.java45 public View inflate(int layoutId) { argument
46 return inflater.inflate(layoutId, container, false);
H A DCallLogModalAlertManager.java48 public View inflate(int layoutId) { argument
49 return inflater.inflate(layoutId, parent, false);
/packages/apps/DocumentsUI/src/com/android/documentsui/sidebar/
H A DItem.java39 public Item(@LayoutRes int layoutId, String stringId) { argument
40 mLayoutId = layoutId;
/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/TV/src/com/android/tv/menu/
H A DChannelsRowItem.java51 public ChannelsRowItem(@NonNull Channel channel, int layoutId) { argument
52 this(channel.getId(), layoutId);
56 private ChannelsRowItem(long itemId, int layoutId) { argument
58 mLayoutId = layoutId;
87 + ", layoutId="
/packages/apps/Contacts/src/com/android/contacts/list/
H A DJoinContactListAdapter.java176 private View inflate(int layoutId, ViewGroup parent) { argument
177 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.java50 LayoutParserCallback callback, Resources sourceRes, int layoutId) {
51 super(context, appWidgetHost, callback, sourceRes, layoutId, TAG_FAVORITES);
49 DefaultLayoutParser(Context context, AppWidgetHost appWidgetHost, LayoutParserCallback callback, Resources sourceRes, int layoutId) 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/datetime/
H A DZonePicker.java85 boolean sortedByName, int layoutId) {
100 layoutId,
84 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/DocumentsUI/src/com/android/documentsui/
H A DBaseActivity.java105 public BaseActivity(@LayoutRes int layoutId, String tag) { argument
106 mLayoutId = layoutId;
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/preprovisioning/
H A DPreProvisioningActivity.java273 public void initiateUi(int layoutId, int titleId, String packageLabel, Drawable packageIcon, argument
277 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);
/packages/services/Car/tests/InstrumentClusterRendererSample/src/com/android/car/cluster/sample/cards/
H A DCardView.java136 protected void inflate(int layoutId) { argument
137 inflate(getContext(), layoutId, (ViewGroup) getChildAt(0));

Completed in 479 milliseconds