/development/samples/Support4Demos/src/com/example/android/supportv4/app/ |
FragmentLayoutSupport.java | 41 * This sample provides a different layout (and activity flow) when run in 51 setContentView(R.layout.fragment_layout_support); 88 * data to the user as appropriate based on the currrent UI layout. 101 R.layout.simple_list_item_checkable_1,
|
/development/samples/Support4Demos/src/com/example/android/supportv4/widget/ |
DrawerLayoutActivity.java | 45 * Drawer views should be positioned after the content view in your layout to preserve proper 83 setContentView(R.layout.drawer_layout); 97 mDrawer.setAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1,
|
SlidingPaneLayoutActivity.java | 39 * below the action bar but above your content views. It is ideal as a two-pane layout 75 setContentView(R.layout.sliding_pane_layout); 84 mList.setAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, 137 * This global layout listener is used to fire an event after first layout occurs 140 * and layout.
|
/development/samples/Support7Demos/src/com/example/android/supportv7/app/ |
ActionBarDisplayOptions.java | 41 setContentView(R.layout.action_bar_display_options); 53 mCustomView = getLayoutInflater().inflate(R.layout.action_bar_display_options_custom, null);
|
ActionBarWithDrawerLayout.java | 47 setContentView(R.layout.action_bar_drawer_layout); 59 mDrawer.setAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1,
|
/development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/ |
WiFiChatFragment.java | 34 view = inflater.inflate(R.layout.fragment_chat, container, false); 88 v = vi.inflate(android.R.layout.simple_list_item_1, null);
|
/development/samples/Wiktionary/src/com/example/android/wiktionary/ |
WordWidget.java | 106 views = new RemoteViews(context.getPackageName(), R.layout.widget_word); 123 views = new RemoteViews(context.getPackageName(), R.layout.widget_message);
|
/development/samples/WiktionarySimple/src/com/example/android/simplewiktionary/ |
WordWidget.java | 97 updateViews = new RemoteViews(context.getPackageName(), R.layout.widget_word); 114 updateViews = new RemoteViews(context.getPackageName(), R.layout.widget_message);
|
/development/samples/browseable/HorizontalPaging/src/com.example.android.horizontalpaging/ |
MainActivity.java | 37 * {@link ViewPager} contained inside R.layout.activity_main. 49 // Load the UI from res/layout/activity_main.xml 50 setContentView(R.layout.sample_main); 212 View rootView = inflater.inflate(R.layout.fragment_main_dummy, container, false);
|
/development/samples/browseable/Interpolator/src/com.example.android.interpolator/ |
InterpolatorFragment.java | 98 // Inflate the fragment_animation layout 99 View v = inflater.inflate(R.layout.interpolator_fragment, container, false); 150 android.R.layout.simple_spinner_dropdown_item, interpolatorNames);
|
/development/samples/browseable/SwipeRefreshLayoutBasic/src/com.example.android.swiperefreshlayoutbasic/ |
SwipeRefreshLayoutBasicFragment.java | 39 * the 'swipe-to-refresh' gesture to a layout. In this sample, SwipeRefreshLayout contains a 82 View view = inflater.inflate(R.layout.fragment_sample, container, false); 108 * uses the system-defined simple_list_item_1 layout that contains one TextView. 112 android.R.layout.simple_list_item_1,
|
/development/samples/browseable/SwipeRefreshMultipleViews/src/com.example.android.swiperefreshmultipleviews/ |
SwipeRefreshMultipleViewsFragment.java | 39 * the 'swipe-to-refresh' gesture to a layout with multiple children. In this sample, 88 View view = inflater.inflate(R.layout.fragment_sample, container, false); 117 * uses the system-defined simple_list_item_1 layout that contains one TextView. Initially 121 android.R.layout.simple_list_item_1,
|
/development/samples/devbytes/ui/ListViewDeletion/src/com/example/android/listviewdeletion/ |
ListViewDeletion.java | 48 setContentView(R.layout.activity_list_view_deletion); 58 android.R.layout.simple_list_item_multiple_choice, cheeseList);
|
/development/samples/training/multiscreen/newsreader/src/com/example/android/newsreader/ |
NewsReaderActivity.java | 32 * Main activity: shows headlines list and articles, if layout permits. 47 * controls are shown in the Action Bar (whether to show tabs or a list depends on the layout). 76 setContentView(R.layout.main_layout); 132 // But do not despair. In this case the layout includes a bar across the 152 SpinnerAdapter adap = new ArrayAdapter<String>(this, R.layout.actionbar_list_item,
|
/development/samples/wearable/Notifications/Wearable/src/main/java/com/example/android/support/wearable/notifications/ |
AnimatedNotificationDisplayActivity.java | 50 setContentView(R.layout.activity_animated_notification_display); 135 imageView.layout(left, top, left + imageWidth, top + imageHeight);
|
/development/samples/wearable/RecipeAssistant/Application/src/main/java/com/example/android/wearable/recipeassistant/ |
RecipeActivity.java | 61 setContentView(R.layout.recipe); 118 View view = inf.inflate(R.layout.step_item, null);
|
/development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/ |
Notepadv2.java | 46 setContentView(R.layout.notes_list); 66 new SimpleCursorAdapter(this, R.layout.notes_row, mNotesCursor, from, to);
|
/development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/ |
Notepadv3.java | 46 setContentView(R.layout.notes_list); 66 new SimpleCursorAdapter(this, R.layout.notes_row, mNotesCursor, from, to);
|
/external/chromium_org/ash/system/chromeos/screen_security/ |
screen_tray_item.cc | 12 #include "ui/views/layout/box_layout.h" 59 void ScreenStatusView::Layout() { 60 views::View::Layout(); 202 views::BoxLayout::Orientation layout = 207 tray_view_->SetLayoutManager(new views::BoxLayout(layout, 0, 0, 0)); 208 tray_view_->Layout();
|
/external/chromium_org/chrome/browser/chromeos/input_method/ |
input_method_manager_impl.h | 83 const std::string& locale, const std::string& layout) OVERRIDE; 96 virtual bool IsLoginKeyboard(const std::string& layout) const OVERRIDE; 132 // that only contains an input method ID of a keyboard layout.
|
mock_input_method_manager.cc | 121 const std::string& locale, const std::string& layout) { 183 const std::string& layout) const {
|
/external/chromium_org/chrome/browser/resources/chromeos/ |
power.css | 12 table-layout: fixed;
|
/external/chromium_org/chrome/browser/ui/webui/options/chromeos/ |
display_options_handler.cc | 290 const ash::DisplayLayout layout = local 292 layout_value.reset(new base::FundamentalValue(layout.position)); 293 offset_value.reset(new base::FundamentalValue(layout.offset)); 344 double layout = -1; local 346 if (!args->GetDouble(0, &layout) || !args->GetDouble(1, &offset)) { 351 DCHECK_LE(ash::DisplayLayout::TOP, layout); 352 DCHECK_GE(ash::DisplayLayout::LEFT, layout); 358 static_cast<int>(layout),
|
/external/chromium_org/content/shell/renderer/test_runner/resources/fonts/ |
fonts.conf | 36 <!-- Some layout tests specify Helvetica as a family and we need to make sure
|
/external/chromium_org/content/test/ |
mock_keyboard_driver_win.cc | 14 // Save the keyboard layout and status of the application. 15 // This class changes the keyboard layout and status of this application. 17 // should save the layout and status here to restore when this instance is 33 // Unload the keyboard-layout driver, restore the keyboard state, and reset 34 // the keyboard layout for succeeding tests. 42 // Only unload a keyboard layout if it was loaded by this mock driver. 43 // Contrary to the documentation on MSDN unloading a keyboard layout 44 // previously loaded by the system causes that layout to stop working. 51 // If we got here, this keyboard layout wasn't loaded by the system so it's 57 bool MockKeyboardDriverWin::SetLayout(int layout) { [all...] |