Searched defs:layout (Results 26 - 38 of 38) sorted by relevance

12

/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DGLView.java35 // rendering happens. GLView asks GLRoot to re-render or re-layout the
39 // dispatchTouchEvent() and layout(), GLRoot acquires a lock to avoid the
209 // Request re-layout of the view hierarchy.
347 public void layout(int left, int top, int right, int bottom) { method in class:GLView
/packages/apps/Music/src/com/android/music/
H A DAlbumBrowserActivity.java110 setContentView(R.layout.media_picker_activity);
122 R.layout.track_list_item,
530 int layout, Cursor cursor, String[] from, int[] to) {
531 super(context, layout, cursor, from, to);
529 AlbumListAdapter(Context context, AlbumBrowserActivity currentactivity, int layout, Cursor cursor, String[] from, int[] to) argument
H A DMusicPicker.java188 TrackListAdapter(Context context, ListView listView, int layout, argument
190 super(context, layout, null, from, to);
435 setContentView(R.layout.music_picker);
444 R.layout.music_picker_item, new String[] {},
H A DTrackBrowserActivity.java161 setContentView(R.layout.media_picker_activity);
205 mEditMode ? R.layout.edit_track_list_item : R.layout.track_list_item,
1407 int layout, Cursor cursor, String[] from, int[] to,
1409 super(context, layout, cursor, from, to);
1406 TrackListAdapter(Context context, TrackBrowserActivity currentactivity, int layout, Cursor cursor, String[] from, int[] to, boolean isnowplaying, boolean disablenowplayingindicator) argument
/packages/apps/Camera/src/com/android/camera/ui/
H A DPieRenderer.java630 public void layout(int l, int t, int r, int b) { method in class:PieRenderer
631 super.layout(l, t, r, b);
/packages/apps/Email/src/com/android/email/activity/
H A DMessageListItem.java87 // Sentinel indicating that the view needs layout
504 * @param layout If this is a three pane implementation, the
507 public void bindViewInit(MessagesAdapter adapter, ThreePaneLayout layout, argument
509 mLayout = layout;
H A DMessageListFragment.java367 // Use a custom layout, which includes the original layout with "send messages" panel.
368 View root = inflater.inflate(R.layout.message_list_fragment,null);
374 public void setLayout(ThreePaneLayout layout) { argument
376 mListAdapter.setLayout(layout);
384 R.layout.message_list_search_header, root, false);
419 R.layout.message_list_item_footer, lv, false);
645 // TODO: Can we define a layout for the contents of the drag area?
671 // Calculate layout positions
1253 R.layout
[all...]
/packages/apps/Launcher2/src/com/android/launcher2/
H A DFolderIcon.java271 public void setCellLayout(CellLayout layout) { argument
272 mCellLayout = layout;
311 CellLayout layout = (CellLayout) getParent().getParent();
313 mFolderRingAnimator.setCellLayout(layout);
315 layout.showFolderAccept(mFolderRingAnimator);
H A DAppsCustomizePagedView.java381 PagedViewCellLayout layout = (PagedViewCellLayout) getPageAt(currentPage);
382 PagedViewCellLayoutChildren childrenLayout = layout.getChildrenLayout();
390 PagedViewGridLayout layout = (PagedViewGridLayout) getPageAt(currentPage);
392 int childCount = layout.getChildCount();
437 // Note that we transpose the counts in portrait so that we get a similar layout
451 // Temp hack for now: only use the max cell count Y for widget layout
688 // We want the first widget layout to be the correct size. This will be important
930 // target layout we were dropping on.
936 CellLayout layout = (CellLayout) workspace.getChildAt(currentScreen);
938 if (layout !
1049 setVisibilityOnChildren(ViewGroup layout, int visibility) argument
1055 setupPage(PagedViewCellLayout layout) argument
1206 setupPage(PagedViewGridLayout layout) argument
[all...]
H A DLauncher.java379 setContentView(R.layout.launcher);
413 mInflater.inflate(R.layout.apps_customize_progressbar, appsCustomizeContentParent);
685 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
687 boundWidget = layout;
692 mPendingAddInfo.screen, layout, null);
982 * @return A View inflated from R.layout.application.
985 return createShortcut(R.layout.application,
992 * @param layoutResId The id of the XML layout used to create the shortcut.
1013 final CellLayout layout = getCellLayout(container, screen);
1019 } else if (!layout
1821 addFolder(CellLayout layout, long container, final int screen, int cellX, int cellY) argument
2333 isHotseatLayout(View layout) argument
2967 addExternalItemToScreen(ItemInfo itemInfo, final CellLayout layout) argument
[all...]
H A DWorkspace.java517 final CellLayout layout;
519 layout = mLauncher.getHotseat().getLayout();
541 layout = (CellLayout) getChildAt(screen);
564 if (!layout.addViewToCellLayout(child, insert ? 0 : -1, childId, lp, markCellsAsOccupied)) {
956 // Here, we determine what the desired scroll would be with and without a layout scale,
958 // as though there is no layout scale.
1358 final CellLayout layout = (CellLayout) getChildAt(i);
1359 layout.setChildrenDrawnWithCacheEnabled(true);
1360 layout.setChildrenDrawingCacheEnabled(true);
1367 final CellLayout layout
2471 setCurrentDropLayout(CellLayout layout) argument
2485 setCurrentDragOverlappingLayout(CellLayout layout) argument
2906 CellLayout layout; field in class:Workspace.FolderCreationAlarmListener
2910 FolderCreationAlarmListener(CellLayout layout, int cellX, int cellY) argument
2982 addExternalItemToScreen(ItemInfo dragInfo, CellLayout layout) argument
3176 createWidgetBitmap(ItemInfo widgetInfo, View layout) argument
3196 getFinalPositionForDropAnimation(int[] loc, float[] scaleXY, DragView dragView, CellLayout layout, ItemInfo info, int[] targetCell, boolean external, boolean scale) argument
3289 setFinalTransitionTransform(CellLayout layout) argument
3304 resetTransitionTransform(CellLayout layout) argument
3342 findNearestArea(int pixelX, int pixelY, int spanX, int spanY, CellLayout layout, int[] recycle) argument
[all...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
H A DSuggestionStripView.java240 mWordToSaveView = (TextView)inflater.inflate(R.layout.suggestion_word, null);
241 mLeftwardsArrowView = (TextView)inflater.inflate(R.layout.hint_add_to_dictionary, null);
242 mHintToSaveView = (TextView)inflater.inflate(R.layout.hint_add_to_dictionary, null);
358 public void layout(SuggestedWords suggestedWords, ViewGroup stripView, ViewGroup placer, method in class:SuggestionStripView.SuggestionStripViewParams
445 // Make this inactive for touches in layout().
604 inflater.inflate(R.layout.suggestions_strip, this);
607 mPreviewText = (TextView) inflater.inflate(R.layout.suggestion_preview, null);
615 final TextView word = (TextView)inflater.inflate(R.layout.suggestion_word, null);
620 final View divider = inflater.inflate(R.layout.suggestion_divider, null);
624 mInfos.add((TextView)inflater.inflate(R.layout
[all...]
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DTextCandidatesViewManager.java456 mViewBody = (ViewGroup)inflater.inflate(R.layout.candidates, null);
521 mViewLongPressDialog = (View)inflater.inflate(R.layout.candidate_longpress_dialog, null);
619 * Set the view layout
921 ViewGroup layout = mViewCandidateList2nd;
931 textView = (TextView) layout.getChildAt(mFullViewWordCount);
1069 * @param layout AbsoluteLayout
1074 private ViewGroup.LayoutParams buildLayoutParams(AbsoluteLayout layout, int width, int height) { argument
1160 ViewGroup layout = mViewCandidateList2nd;
1161 int size = layout.getChildCount();
1163 View v = layout
[all...]

Completed in 371 milliseconds

12