HomeSort by relevance Sort by last modified time
    Searched refs:View (Results 126 - 150 of 2336) sorted by null

1 2 3 4 56 7 8 91011>>

  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
SuggestionViewFactory.java 22 import android.view.View;
23 import android.view.ViewGroup;
33 * Returns all the view types that are used by this factory. Each view type corresponds to a
37 * View types must be unique across all suggestion view factories.
42 * Returns the view type to be used for displaying the given suggestion. This MUST correspond to
43 * one of the view types returned by {@link #getSuggestionViewTypes()}.
48 * Gets a view corresponding to the current suggestion in the given cursor
    [all...]
ContactBadge.java 20 import android.view.View;
25 * The base class may use {@link View#setOnClickListener} internally,
30 private View.OnClickListener mExtraOnClickListener;
45 public void onClick(View v) {
52 public void setExtraOnClickListener(View.OnClickListener extraOnClickListener) {
  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
EditorRelativeLayout.java 23 import android.view.View;
32 public class EditorRelativeLayout extends RelativeLayout implements View.OnClickListener {
51 public void onClick(View view) {
  /cts/tests/tests/holo/src/android/holo/cts/modifiers/
DialogModifier.java 21 import android.view.View;
22 import android.view.ViewGroup;
26 * parent view group.
37 public View modifyView(View view) {
38 Dialog dialog = mBuilder.buildDialog(view);
40 ViewGroup parent = (ViewGroup) view.getParent();
41 parent.removeView(view); // remove the filler vie
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
AdapterView_AdapterContextMenuInfoTest.java 24 import android.view.View;
33 args = {android.view.View.class, int.class, long.class}
37 View testView = new View(getContext());
  /development/samples/ApiDemos/src/com/example/android/apis/app/
NotifyingController.java 26 import android.view.View;
27 import android.view.View.OnClickListener;
48 public void onClick(View v) {
55 public void onClick(View v) {
  /development/samples/ApiDemos/src/com/example/android/apis/os/
MorseCode.java 26 import android.view.View;
52 /** Our text view */
67 // view layout definition, which is being set here as
74 // Save the text view so we don't have to look it up each time
79 View.OnClickListener mClickListener = new View.OnClickListener() {
80 public void onClick(View v) {
81 // Get the text out of the view
  /development/samples/ApiDemos/src/com/example/android/apis/view/
Animation1.java 17 package com.example.android.apis.view;
25 import android.view.View;
26 import android.view.animation.Animation;
27 import android.view.animation.AnimationUtils;
29 public class Animation1 extends Activity implements View.OnClickListener {
36 View loginButton = findViewById(R.id.login);
40 public void onClick(View v) {
ScrollBar3.java 17 package com.example.android.apis.view;
21 import android.view.View;
33 findViewById(R.id.view3).setScrollBarStyle(View.SCROLLBARS_INSIDE_INSET);
  /external/chromium/chrome/browser/ui/views/tab_contents/
tab_contents_container_native.h 12 #include "views/view.h"
19 class TabContentsContainer : public views::View,
25 // Changes the TabContents associated with this view.
28 View* GetFocusView() { return native_container_->GetView(); }
40 // Updates the current reserved rect in view coordinates where contents
49 // Overridden from views::View:
54 // Overridden from views::View:
55 virtual void ViewHierarchyChanged(bool is_add, views::View* parent,
56 views::View* child) OVERRIDE;
77 // view handle associated with the attached TabContents
    [all...]
  /external/chromium/chrome/browser/ui/views/tabs/
abstract_tab_strip_view.h 9 #include "views/view.h"
11 // This interface is the way the browser view sees a tab strip's view.
12 class AbstractTabStripView : public views::View {
  /frameworks/base/core/java/android/widget/
HeterogeneousExpandableList.java 19 import android.view.View;
20 import android.view.ViewGroup;
24 * {@link ExpandableListAdapter} take advantage of the {@link Adapter} view type
27 * An {@link ExpandableListAdapter} declares it has one view type for its group items
28 * and one view type for its child items. Although adapted for most {@link ExpandableListView}s,
33 * {@link android.widget.ExpandableListAdapter#getGroupView(int, boolean, View, ViewGroup)}
35 * {@link android.widget.ExpandableListAdapter#getChildView(int, int, boolean, View, ViewGroup)}
41 * Get the type of group View that will be created by
42 * {@link android.widget.ExpandableListAdapter#getGroupView(int, boolean, View, ViewGroup)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/view/
VisibilityCallbackTest.java 17 package android.view;
22 import android.view.View;
23 import android.view.ViewGroup;
29 * Exercises {@link android.view.View}'s ability to change visibility between
60 mVictim.setVisibility(View.INVISIBLE);
77 assertEquals(View.INVISIBLE, mVictim.getVisibility());
78 assertEquals(View.VISIBLE, mParent.getVisibility());
84 mVictim.setVisibility(View.VISIBLE)
    [all...]
  /frameworks/base/tests/BiDiTests/src/com/android/bidi/
BiDiTestTextViewDrawablesLtr.java 21 import android.view.LayoutInflater;
22 import android.view.View;
23 import android.view.ViewGroup;
28 private View currentView;
32 public View onCreateView(LayoutInflater inflater, ViewGroup container,
39 public void onViewCreated(View view, Bundle savedInstanceState) {
40 super.onViewCreated(view, savedInstanceState);
BiDiTestTextViewDrawablesRtl.java 21 import android.view.LayoutInflater;
22 import android.view.View;
23 import android.view.ViewGroup;
28 private View currentView;
32 public View onCreateView(LayoutInflater inflater, ViewGroup container,
39 public void onViewCreated(View view, Bundle savedInstanceState) {
40 super.onViewCreated(view, savedInstanceState);
  /frameworks/base/tests/appwidgets/AppWidgetHostTest/src/com/android/tests/appwidgethost/
TestAppWidgetConfigure.java 24 import android.view.View;
42 View.OnClickListener mOnClickListener = new View.OnClickListener() {
43 public void onClick(View v) {
  /packages/apps/Camera/src/com/android/camera/ui/
StackLayout.java 21 import android.view.View;
22 import android.view.ViewGroup;
37 final View child = getChildAt(0);
53 final View child = getChildAt(i);
54 if (child.getVisibility() != View.GONE) {
  /packages/apps/CertInstaller/src/com/android/certinstaller/
ViewHelper.java 19 import android.view.View;
26 private View mView;
28 void setView(View view) {
29 mView = view;
35 if (v != null) v.setVisibility(View.VISIBLE);
  /packages/apps/Contacts/src/com/android/contacts/detail/
ViewOverlay.java 19 import android.view.View.OnClickListener;
22 * This is implemented by {@link View}s that contain an alpha layer and touch interceptor layer.
25 * when visible, it intercepts all touch events on the {@link View}.
  /packages/apps/Email/src/com/android/email/activity/
UiUtilities.java 25 import android.view.View;
72 public static <T extends View> T getViewOrNull(Activity parent, int viewId) {
76 /** Generics version of {@link View#findViewById} */
78 public static <T extends View> T getViewOrNull(View parent, int viewId) {
83 * Same as {@link Activity#findViewById}, but crashes if there's no view.
86 public static <T extends View> T getView(Activity parent, int viewId) {
91 * Same as {@link View#findViewById}, but crashes if there's no view
    [all...]
  /cts/tests/src/android/view/cts/
MockViewStub.java 17 package android.view.cts;
21 import android.view.View;
23 public class MockViewStub extends View {
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
GraphicsActivity.java 21 import android.view.View;
22 import android.view.ViewGroup;
34 public void setContentView(View view) {
37 vg.addView(view);
38 view = vg;
41 super.setContentView(view);
  /external/chromium/chrome/browser/chromeos/login/
wizard_screen.h 19 class View;
25 // Returns top level view of the wizard.
26 virtual views::View* GetWizardView() = 0;
55 // Refreshes screen state. Should be called after view is made visible.
  /external/chromium/chrome/browser/chromeos/panels/
panel_scroller_container.cc 10 views::View* contents)
11 : views::View(),
  /external/chromium/chrome/browser/ui/views/
cookie_info_view.h 16 #include "views/view.h"
41 class CookieInfoView : public views::View,
65 // views::View overrides:
67 views::View* parent,
68 views::View* child);
82 views::View* label, views::View* value);
84 views::View* label, views::View* control);
86 // Sets up the view layout
    [all...]

Completed in 943 milliseconds

1 2 3 4 56 7 8 91011>>