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

<<51525354555657585960>>

  /bionic/libc/kernel/common/linux/raid/
md_p.h 124 __u32 layout; member in struct:mdp_superblock_s
146 __u32 layout; member in struct:mdp_superblock_1
  /cts/tests/tests/content/src/android/content/cts/
ContextTest.java 144 testTypedArray = mContext.obtainStyledAttributes(getAttributeSet(R.layout.context_layout),
151 testTypedArray = mContext.obtainStyledAttributes(getAttributeSet(R.layout.context_layout),
  /cts/tests/tests/text/src/android/text/style/cts/
DrawableMarginSpanTest.java 27 import android.text.Layout;
66 Layout layout = new StaticLayout("cts test.", paint, 200, local
67 Layout.Alignment.ALIGN_NORMAL, 1, 0, true);
71 0, 0, text, 0, 0, true, layout);
  /cts/tests/tests/widget/src/android/widget/cts/
SpinnerTest.java 66 com.android.cts.stub.R.array.string, android.R.layout.simple_spinner_item);
67 adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
  /developers/samples/android/ui/views/HorizontalPaging/HorizontalPaging/src/main/java/com/example/android/horizontalpaging/
MainActivity.java 41 * {@link ViewPager} contained inside R.layout.activity_main.
53 // Load the UI from res/layout/activity_main.xml
54 setContentView(R.layout.activity_main);
216 View rootView = inflater.inflate(R.layout.fragment_main_dummy, container, false);
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
Transition3d.java 18 * This sample application shows how to use layout animation and various
57 setContentView(R.layout.animations_main_screen);
65 android.R.layout.simple_list_item_1, PHOTOS_NAMES);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ActionBarDisplayOptions.java 40 setContentView(R.layout.action_bar_display_options);
52 mCustomView = getLayoutInflater().inflate(R.layout.action_bar_display_options_custom, null);
FragmentDialog.java 39 setContentView(R.layout.fragment_dialog);
150 View v = inflater.inflate(R.layout.fragment_dialog, container, false);
FragmentLayout.java 40 * This sample provides a different layout (and activity flow) when run in
50 setContentView(R.layout.fragment_layout);
86 * data to the user as appropriate based on the currrent UI layout.
99 android.R.layout.simple_list_item_activated_1, Shakespeare.TITLES));
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
MyRssReader2.java 42 // Load screen layout.
43 setContentView(R.layout.main_screen2);
56 RssDataAdapter<RssItem> adap = new RssDataAdapter<RssItem>(this, R.layout.add_item, mFeeds);
MyRssReader3.java 45 // Load screen layout.
46 setContentView(R.layout.main_screen2);
53 mAdap = new RssDataAdapter<RssItem>(this, R.layout.list_element, mFeeds);
  /development/samples/SearchableDictionary/src/com/example/android/searchabledict/
SearchableDictionary.java 52 setContentView(R.layout.main);
105 // Specify the corresponding layout elements where we want the columns to go
111 R.layout.result, cursor, from, to);
  /development/samples/Spinner/src/com/android/example/spinner/
SpinnerActivity.java 105 setContentView(R.layout.main);
115 android.R.layout.simple_spinner_dropdown_item);
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
FragmentDialogSupport.java 40 setContentView(R.layout.fragment_dialog);
150 View v = inflater.inflate(R.layout.fragment_dialog, container, false);
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);
92 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);
  /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/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/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);

Completed in 506 milliseconds

<<51525354555657585960>>