HomeSort by relevance Sort by last modified time
    Searched refs:layout (Results 551 - 575 of 3589) sorted by null

<<21222324252627282930>>

  /packages/wallpapers/LivePicker/src/com/android/wallpaper/livepicker/
LiveWallpaperActivity.java 42 setContentView(R.layout.live_wallpaper_base);
46 /* When the screen is XLarge, the fragment is not included in the layout, so show it
119 /* If this fragment is embedded in the layout of this activity, then we should
131 View layout = inflater.inflate(R.layout.live_wallpaper_list, container, false); local
135 (AdapterView<BaseAdapter>) layout.findViewById(android.R.id.list);
138 adapterView.setEmptyView(layout.findViewById(android.R.id.empty));
139 return layout;
  /developers/samples/android/ui/notifications/CustomNotifications/CustomNotifications/src/main/java/com/example/android/customnotifications/
MainActivity.java 41 * <p>The content views are inflated as {@link RemoteViews} directly from their XML layout
75 // Inflate the notification layout as RemoteViews
76 RemoteViews contentView = new RemoteViews(getPackageName(), R.layout.notification);
95 // Inflate and set the layout for the expanded notification view
97 new RemoteViews(getPackageName(), R.layout.notification_expanded);
112 setContentView(R.layout.activity_main);
116 * Create and show a notification with a custom layout.
118 * 'Show Notification' button in the XML layout.
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ScreenOrientation.java 58 setContentView(R.layout.screen_orientation);
62 this, R.array.screen_orientations, android.R.layout.simple_spinner_item);
63 adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
Animation2.java 39 setContentView(R.layout.animation_2);
46 android.R.layout.simple_spinner_item, mStrings);
47 adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
  /external/chromium/chrome/browser/ui/views/
page_info_bubble_view.cc 23 #include "views/layout/grid_layout.h"
29 // Layout constants.
57 virtual void Layout();
63 // Calculate the layout if |compute_bounds_only|, otherwise does Layout also.
124 views::GridLayout* layout = new views::GridLayout(this); local
125 SetLayoutManager(layout);
126 views::ColumnSet* columns = layout->AddColumnSet(0);
135 columns = layout->AddColumnSet(1);
148 layout->StartRow(0, 0)
    [all...]
  /external/chromium_org/chrome/browser/ui/views/sync/
one_click_signin_bubble_view.h 98 void InitBubbleContent(views::GridLayout* layout);
101 void InitDialogContent(views::GridLayout* layout);
104 void InitButtons(views::GridLayout* layout);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d10tri/
d3d10tri.cpp 56 ID3D10InputLayout* layout; member in struct:d3d10tri
70 ensure(dev->CreateInputLayout(elements, sizeof(elements) / sizeof(elements[0]), g_vs, sizeof(g_vs), &layout));
103 ctx->IASetInputLayout(layout);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11tri/
d3d11tri.cpp 56 ID3D11InputLayout* layout; member in struct:d3d11tri
71 ensure(dev->CreateInputLayout(elements, sizeof(elements) / sizeof(elements[0]), g_vs, sizeof(g_vs), &layout));
105 ctx->IASetInputLayout(layout);
  /external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d10tri/
d3d10tri.cpp 56 ID3D10InputLayout* layout; member in struct:d3d10tri
70 ensure(dev->CreateInputLayout(elements, sizeof(elements) / sizeof(elements[0]), g_vs, sizeof(g_vs), &layout));
103 ctx->IASetInputLayout(layout);
  /external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11tri/
d3d11tri.cpp 56 ID3D11InputLayout* layout; member in struct:d3d11tri
71 ensure(dev->CreateInputLayout(elements, sizeof(elements) / sizeof(elements[0]), g_vs, sizeof(g_vs), &layout));
105 ctx->IASetInputLayout(layout);
  /frameworks/base/core/java/android/text/style/
DrawableMarginSpan.java 24 import android.text.Layout;
45 boolean first, Layout layout) {
48 int itop = (int)layout.getLineTop(layout.getLineForOffset(st));
  /frameworks/base/core/java/com/android/internal/widget/
SubtitleView.java 31 import android.text.Layout.Alignment;
216 final StaticLayout layout = mLayout; local
220 final int width = layout.getWidth() + paddingX;
221 final int height = layout.getHeight() + mPaddingTop + mPaddingBottom;
282 final StaticLayout layout = mLayout; local
283 if (layout == null) {
291 final int lineCount = layout.getLineCount();
298 float previousBottom = layout.getLineTop(0);
304 bounds.left = layout.getLineLeft(i) -innerPaddingX;
305 bounds.right = layout.getLineRight(i) + innerPaddingX
    [all...]
  /frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
CrossFadeDemo.java 39 setContentView(R.layout.crossfade);
44 mScene1 = Scene.getSceneForLayout(mSceneRoot, R.layout.crossfade, this);
45 mScene2 = Scene.getSceneForLayout(mSceneRoot, R.layout.crossfade_1, this);
Demo1.java 41 setContentView(R.layout.search_screen);
46 // mResultsScreen = new MyScene(mSceneRoot, R.layout.results_screen);
47 // mSearchScreen = new MyScene(mSceneRoot, R.layout.search_screen);
54 inflater.inflate(R.layout.results_screen, mSceneRoot);
63 inflater.inflate(R.layout.search_screen, mSceneRoot);
Demo2.java 39 setContentView(R.layout.search_screen);
50 // mSearchScreen = new Scene(this, mSceneRoot, R.layout.search_screen);
51 // mResultsScreen = new Scene(this, mSceneRoot, R.layout.results_screen);
53 mSearchScreen = Scene.getSceneForLayout(mSceneRoot, R.layout.search_screen, this);
54 mResultsScreen = Scene.getSceneForLayout(mSceneRoot, R.layout.search_screen, this);
Demo4.java 39 setContentView(R.layout.search_screen);
44 mSearchScreen = Scene.getSceneForLayout(mSceneRoot, R.layout.search_screen, this);
45 mResultsScreen = Scene.getSceneForLayout(mSceneRoot, R.layout.results_screen, this);
FadingTest.java 44 setContentView(R.layout.fading_test);
61 mScene1 = Scene.getSceneForLayout(mSceneRoot, R.layout.fading_test, this);
62 mScene2 = Scene.getSceneForLayout(mSceneRoot, R.layout.fading_test_scene_2, this);
ResourceLoadingTest.java 40 setContentView(R.layout.search_screen);
66 Scene scene = Scene.getSceneForLayout(mSceneRoot, R.layout.search_screen, this);
70 Scene scene = Scene.getSceneForLayout(mSceneRoot, R.layout.results_screen, this);
ScenesTestv21.java 40 setContentView(R.layout.search_screen);
45 mSearchScreen = Scene.getSceneForLayout(mSceneRoot, R.layout.search_screen, this);
46 mResultsScreen = Scene.getSceneForLayout(mSceneRoot, R.layout.results_screen, this);
SequenceTestSimple.java 43 setContentView(R.layout.fading_test_simple);
50 mScene1 = Scene.getSceneForLayout(mSceneRoot, R.layout.fading_test_simple, this);
51 mScene2 = Scene.getSceneForLayout(mSceneRoot, R.layout.fading_test_simple2, this);
UniqueIds.java 41 setContentView(R.layout.unique_id_test);
45 Button button = (Button) inflater.inflate(R.layout.button_template, null);
49 button = (Button) inflater.inflate(R.layout.button_template, null);
  /packages/apps/Browser/src/com/android/browser/view/
PieStackView.java 60 public void layout(int anchorX, int anchorY, boolean left, float angle, method in class:PieStackView
62 super.layout(anchorX, anchorY, left, angle, pHeight);
79 view.layout(x, top, x + mChildWidth, top + mChildHeight);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
ReportViewerActivity.java 31 setContentView(R.layout.report_viewer);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BluetoothTestActivity.java 30 setContentView(R.layout.pass_fail_list);
  /cts/tests/src/android/text/
EmojiStubActivity.java 31 setContentView(R.layout.webview_layout);

Completed in 523 milliseconds

<<21222324252627282930>>