HomeSort by relevance Sort by last modified time
    Searched full:actionbar (Results 276 - 300 of 437) sorted by null

<<1112131415161718

  /packages/apps/Launcher3/src/com/android/launcher3/
WallpaperCropActivity.java 19 import android.app.ActionBar;
104 final ActionBar actionBar = getActionBar();
105 actionBar.setCustomView(R.layout.actionbar_set_wallpaper);
106 actionBar.getCustomView().setOnClickListener(
WallpaperPickerActivity.java 21 import android.app.ActionBar;
373 final ActionBar actionBar = getActionBar();
374 actionBar.setCustomView(R.layout.actionbar_set_wallpaper);
375 actionBar.getCustomView().setOnClickListener(
    [all...]
  /packages/apps/UnifiedEmail/res/values/
styles.xml 164 <style name="AccountSpinnerAnchorTextPrimary" parent="@android:style/TextAppearance.Holo.Widget.ActionBar.Title">
167 <style name="AccountSpinnerAnchorTextSecondary" parent="@android:style/TextAppearance.Holo.Widget.ActionBar.Subtitle">
340 <style name="WidgetTitle" parent="@android:style/TextAppearance.Holo.Widget.ActionBar.Title.Inverse">
344 <style name="WidgetSubtitle" parent="@android:style/TextAppearance.Holo.Widget.ActionBar.Subtitle.Inverse">
378 <style name="PlainActionBarStyle" parent="@android:style/Widget.Holo.Light.ActionBar.Solid">
  /development/samples/ApiDemos/src/com/example/android/apis/app/
_index.html 6 <li><a href="#ActionBar">Action Bar</a></li>
142 <dd>Demonstrates implementing ActionBar tabs by switching between
148 <h3 id="ActionBar">Action Bar</h3>
  /frameworks/base/docs/html/design/patterns/
actionbar.jd 2 page.tags="actionbar","navigation"
7 <a class="notice-developers" href="{@docRoot}guide/topics/ui/actionbar.html">
184 <a onClick="_gaq.push(['_trackEvent', 'Design', 'Download', 'Action Bar Icons (@actionbar page)']);"
  /frameworks/base/docs/html/sdk/api_diff/18/changes/
methods_index_additions.html     [all...]
  /frameworks/base/docs/html/tools/support-library/
setup.jd 246 the class from the appropriate package. For example, when applying the {@code ActionBar}
249 <li>{@code android.support.v7.app.ActionBar} when using the Support Library.</li>
250 <li>{@code android.app.ActionBar} when developing only for API level 11 or higher.</li>
  /frameworks/support/v4/java/android/support/v4/app/
ActionBarDrawerToggle.java 35 * {@link DrawerLayout} and the framework <code>ActionBar</code> to implement the recommended
183 * @param drawerLayout The DrawerLayout to link to the given Activity's ActionBar
237 * <p>When the indicator is disabled, the <code>ActionBar</code> will revert to displaying
  /packages/apps/Calendar/src/com/android/calendar/agenda/
AgendaFragment.java 183 // Set scroll listener so that the date on the ActionBar can be set while
451 // the time on the ActionBar
461 // If the day changed, update the ActionBar
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutCanvas.java 434 LayoutActionBar actionBar = getGraphicalEditor().getLayoutActionBar();
435 if (actionBar.isZoomingAllowed()) {
476 LayoutActionBar actionBar = getGraphicalEditor().getLayoutActionBar();
477 if (c == '1' && actionBar.isZoomingAllowed()) {
479 } else if (c == '0' && actionBar.isZoomingAllowed()) {
482 && actionBar.isZoomingAllowed()) {
484 } else if ((c == '+' || c == '=') && actionBar.isZoomingAllowed()) {
488 actionBar.rescale(1);
490 } else if (c == '-' && actionBar.isZoomingAllowed()) {
494 actionBar.rescale(-1)
    [all...]
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiSettings.java 26 import android.app.ActionBar;
403 activity.getActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM,
404 ActionBar.DISPLAY_SHOW_CUSTOM);
405 activity.getActionBar().setCustomView(actionBarSwitch, new ActionBar.LayoutParams(
406 ActionBar.LayoutParams.WRAP_CONTENT,
407 ActionBar.LayoutParams.WRAP_CONTENT,
    [all...]
  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
MainActivity.java 24 import android.app.ActionBar;
78 ActionBar bar = getActionBar();
  /frameworks/base/core/java/android/app/
FragmentBreadCrumbs.java 34 * {@link ActionBar#setCustomView(View)
35 * ActionBar.setCustomView(View)} to place the bread crumbs in
  /frameworks/base/docs/html/training/implementing-navigation/
ancestral.jd 40 href="{@docRoot}guide/topics/ui/actionbar.html">action bar</a>.
111 {@link android.app.ActionBar#setDisplayHomeAsUpEnabled setDisplayHomeAsUpEnabled()}:</p>
  /frameworks/support/v4/java/android/support/v4/internal/view/
SupportMenuItem.java 75 * @see android.app.ActionBar
95 * @see android.app.ActionBar
  /frameworks/support/v4/java/android/support/v4/view/
ActionProvider.java 39 * creating the action view that appears in the {@link android.app.ActionBar} as a substitute for
41 * performing a default action if a menu item placed on the overflow menu of the ActionBar is
  /packages/apps/Contacts/res/values/
styles.xml 105 <style name="ContactsActionBarStyle" parent="@android:Widget.Holo.Light.ActionBar">
123 <style name="ContactsActionBarTabView" parent="@android:style/Widget.Holo.ActionBar.TabView">
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/
FilterShowActivity.java 19 import android.app.ActionBar;
351 ActionBar actionBar = getActionBar();
352 actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
353 actionBar.setCustomView(R.layout.filtershow_actionbar);
354 actionBar.setBackgroundDrawable(new ColorDrawable(
357 mSaveButton = actionBar.getCustomView();
    [all...]
  /packages/services/Telephony/res/values/
styles.xml 223 parent="@android:style/Widget.Holo.Light.ActionBar.Solid.Inverse">
229 parent="@android:style/Widget.Holo.Light.ActionBar">
  /frameworks/base/docs/html/sdk/api_diff/14/changes/
methods_index_all.html 384 &nbsp;&nbsp;<nobr><A HREF="android.app.ActionBar.Tab.html#android.app.ActionBar.Tab.getContentDescription_added()" class="hiddenlink" target="rightframe">type&nbsp;<b>
385 ()</b>&nbsp;in&nbsp;android.app.ActionBar.Tab
    [all...]
  /development/samples/ActionBarCompat/src/com/example/android/actionbarcompat/
SimpleMenu.java 32 * useful for our actionbar-compat purposes. See
  /development/samples/ApiDemos/res/layout/
system_ui_modes.xml 135 android:text="No ActionBar"
  /development/samples/SearchableDictionary/src/com/example/android/searchabledict/
SearchableDictionary.java 20 import android.app.ActionBar;
  /development/samples/Support7Demos/res/values/
strings.xml 50 <!-- ActionBar -->
  /development/samples/training/ContactsList/src/com/example/android/contactslist/ui/
ContactsListActivity.java 65 // an ActionBar SearchView which carries out the search in-line without loading a new

Completed in 1195 milliseconds

<<1112131415161718