HomeSort by relevance Sort by last modified time
    Searched refs:view (Results 776 - 800 of 7837) sorted by null

<<31323334353637383940>>

  /packages/apps/Gallery2/src/com/android/photos/adapters/
PhotoThumbnailAdapter.java 22 import android.view.LayoutInflater;
23 import android.view.View;
24 import android.view.ViewGroup;
48 public void bindView(View view, Context context, Cursor cursor) {
49 ImageView iv = (ImageView) view.findViewById(R.id.thumbnail);
58 public View newView(Context context, Cursor cursor, ViewGroup parent) {
59 View view = mInflater.inflate(R.layout.photo_set_item, parent, false) local
    [all...]
  /packages/apps/Settings/src/com/android/settings/dashboard/
DashboardTileView.java 21 import android.view.LayoutInflater;
22 import android.view.View;
30 public class DashboardTileView extends FrameLayout implements View.OnClickListener {
37 private View mDivider;
50 final View view = LayoutInflater.from(context).inflate(R.layout.dashboard_tile, this); local
52 mImageView = (ImageView) view.findViewById(R.id.icon);
53 mTitleTextView = (TextView) view.findViewById(R.id.title);
54 mStatusTextView = (TextView) view.findViewById(R.id.status)
    [all...]
  /pdk/apps/TestingCamera/src/com/android/testingcamera/
InfoDialogFragment.java 7 import android.view.LayoutInflater;
8 import android.view.View;
9 import android.view.ViewGroup;
13 public class InfoDialogFragment extends DialogFragment implements View.OnClickListener {
26 public View onCreateView(LayoutInflater inflater, ViewGroup container,
28 View view = inflater.inflate(R.layout.fragment_info, container); local
30 mOkButton = (Button) view.findViewById(R.id.info_ok_button);
33 mInfoText= (TextView) view.findViewById(R.id.info_text)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
auditsPanel.css 40 .audit-launcher-view .audit-launcher-view-content {
49 .audit-launcher-view h1 {
54 .audit-launcher-view h1.no-audits {
61 .audit-launcher-view div.button-container {
67 .audit-launcher-view div.button-container > button {
74 .audit-launcher-view fieldset.audit-categories-container {
84 .audit-launcher-view button {
88 .audit-launcher-view button:active {
93 .panel-enabler-view.audit-launcher-view label
    [all...]
  /development/ndk/platforms/android-9/samples/native-audio/src/com/example/nativeaudio/
NativeAudio.java 23 import android.view.View;
24 import android.view.View.OnClickListener;
72 public void onItemSelected(AdapterView<?> parent, View view, int pos, long id) {
85 public void onClick(View view) {
92 public void onClick(View view) {
    [all...]
  /frameworks/opt/chips/tests/src/com/android/ex/chips/
ChipsTest.java 140 MockRecipientEditTextView view = new MockRecipientEditTextView(getContext()); local
141 view.setAdapter(new TestBaseRecipientAdapter(getContext()));
142 return view;
146 RecipientEditTextView view = createViewForTesting(); local
149 String testAddress = view.createAddressText(entry);
150 String testDisplay = view.createChipDisplayText(entry);
157 testAddress = view.createAddressText(alreadyFormatted);
158 testDisplay = view.createChipDisplayText(alreadyFormatted);
165 testAddress = view.createAddressText(alreadyFormattedNoSpace);
171 testAddress = view.createAddressText(alreadyNamed)
183 MockRecipientEditTextView view = createViewForTesting(); local
220 MockRecipientEditTextView view = createViewForTesting(); local
246 MockRecipientEditTextView view = createViewForTesting(); local
262 MockRecipientEditTextView view = createViewForTesting(); local
275 BaseMockRecipientEditTextView view = new BaseMockRecipientEditTextView(getContext()); local
297 MockRecipientEditTextView view = createViewForTesting(); local
358 MockRecipientEditTextView view = createViewForTesting(); local
437 MockRecipientEditTextView view = createViewForTesting(); local
478 MockRecipientEditTextView view = createViewForTesting(); local
524 MockRecipientEditTextView view = createViewForTesting(); local
611 MockRecipientEditTextView view = createViewForTesting(); local
723 MockRecipientEditTextView view = createViewForTesting(); local
849 MockRecipientEditTextView view = createViewForTesting(); local
876 MockRecipientEditTextView view = createViewForTesting(); local
912 MockRecipientEditTextView view = createViewForTesting(); local
924 MockRecipientEditTextView view = createViewForTesting(); local
955 TextView view = new TextView(getContext()); local
1019 final RecipientEditTextView view = new RecipientEditTextView(getContext(), null); local
1036 final RecipientEditTextView view = new RecipientEditTextView(getContext(), null); local
    [all...]
  /frameworks/base/core/java/android/transition/
ChangeBounds.java 37 import android.view.View;
38 import android.view.ViewGroup;
112 private static final Property<View, PointF> BOTTOM_RIGHT_ONLY_PROPERTY =
113 new Property<View, PointF>(PointF.class, "bottomRight") {
115 public void set(View view, PointF bottomRight) {
116 int left = view.getLeft();
117 int top = view.getTop();
120 view.setLeftTopRightBottom(left, top, right, bottom)
233 View view = values.view; local
286 final View view = endValues.view; local
    [all...]
  /development/samples/devbytes/animation/ListViewItemAnimations/src/com/example/android/listviewitemanimations/
ListViewItemAnimations.java 28 import android.view.MotionEvent;
29 import android.view.View;
30 import android.view.ViewConfiguration;
31 import android.view.ViewTreeObserver;
32 import android.view.animation.AlphaAnimation;
33 import android.view.animation.Animation;
34 import android.view.animation.Animation.AnimationListener;
35 import android.view.animation.AnimationSet;
36 import android.view.animation.TranslateAnimation
    [all...]
  /frameworks/base/core/java/android/view/
GhostView.java 16 package android.view;
25 * This view draws another View in an Overlay without changing the parent. It will not be drawn
27 * here using its render node. When the GhostView is set to INVISIBLE, the View it is
29 * view becomes INVISIBLE.
32 public class GhostView extends View {
33 private final View mView;
37 private GhostView(View view) {
38 super(view.getContext())
    [all...]
  /developers/build/prebuilts/gradle/SwipeRefreshMultipleViews/Application/src/main/java/com/example/android/swiperefreshmultipleviews/
SwipeRefreshMultipleViewsFragment.java 26 import android.view.LayoutInflater;
27 import android.view.Menu;
28 import android.view.MenuInflater;
29 import android.view.MenuItem;
30 import android.view.View;
31 import android.view.ViewGroup;
41 * {@link android.widget.TextView} empty view.
72 * The {@link View} which is displayed when the GridView is empty.
74 private View mEmptyView
88 View view = inflater.inflate(R.layout.fragment_sample, container, false); local
    [all...]
  /developers/samples/android/ui/views/SwipeRefreshLayout/SwipeRefreshMultipleViews/Application/src/main/java/com/example/android/swiperefreshmultipleviews/
SwipeRefreshMultipleViewsFragment.java 26 import android.view.LayoutInflater;
27 import android.view.Menu;
28 import android.view.MenuInflater;
29 import android.view.MenuItem;
30 import android.view.View;
31 import android.view.ViewGroup;
41 * {@link android.widget.TextView} empty view.
72 * The {@link View} which is displayed when the GridView is empty.
74 private View mEmptyView
88 View view = inflater.inflate(R.layout.fragment_sample, container, false); local
    [all...]
  /development/samples/browseable/SwipeRefreshMultipleViews/src/com.example.android.swiperefreshmultipleviews/
SwipeRefreshMultipleViewsFragment.java 26 import android.view.LayoutInflater;
27 import android.view.Menu;
28 import android.view.MenuInflater;
29 import android.view.MenuItem;
30 import android.view.View;
31 import android.view.ViewGroup;
41 * {@link android.widget.TextView} empty view.
72 * The {@link View} which is displayed when the GridView is empty.
74 private View mEmptyView
88 View view = inflater.inflate(R.layout.fragment_sample, container, false); local
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/view/
TestWindow.java 1 package com.xtremelabs.robolectric.tester.android.view;
8 import android.view.InputQueue;
9 import android.view.KeyEvent;
10 import android.view.LayoutInflater;
11 import android.view.MotionEvent;
12 import android.view.SurfaceHolder;
13 import android.view.View;
14 import android.view.ViewGroup;
15 import android.view.Window
    [all...]
  /frameworks/base/core/java/android/webkit/
WebChromeClient.java 25 import android.view.View;
31 * @param view The WebView that initiated the callback.
35 public void onProgressChanged(WebView view, int newProgress) {}
39 * @param view The WebView that initiated the callback.
42 public void onReceivedTitle(WebView view, String title) {}
46 * @param view The WebView that initiated the callback.
49 public void onReceivedIcon(WebView view, Bitmap icon) {}
53 * @param view The WebView that initiated the callback.
57 public void onReceivedTouchIconUrl(WebView view, String url
    [all...]
  /frameworks/base/core/tests/coretests/src/android/view/
DrawableBgMinSizeTest.java 17 package android.view;
20 import android.view.DrawableBgMinSize;
26 import android.view.View;
83 public void doMinimumSizeTest(View view) throws Exception {
84 assertTrue(view.getClass().getSimpleName() + " should respect the background Drawable's minimum width",
85 view.getWidth() >= mBackgroundDrawable.getMinimumWidth());
86 assertTrue(view.getClass().getSimpleName() + " should respect the background Drawable's minimum height",
87 view.getHeight() >= mBackgroundDrawable.getMinimumHeight())
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DelegateViewHelper.java 22 import android.view.MotionEvent;
23 import android.view.View;
27 private View mDelegateView;
28 private View mSourceView;
40 public DelegateViewHelper(View sourceView) {
44 public void setDelegateView(View view) {
45 mDelegateView = view;
64 mPanelShowing = mDelegateView.getVisibility() == View.VISIBLE
    [all...]
  /packages/apps/Browser/src/com/android/browser/
BrowserBookmarksAdapter.java 24 import android.view.LayoutInflater;
25 import android.view.View;
26 import android.view.ViewGroup;
32 import com.android.browser.view.BookmarkContainer;
57 public View newView(Context context, ViewGroup parent) {
62 public void bindView(View view, BrowserBookmarksAdapterItem object) {
63 BookmarkContainer container = (BookmarkContainer) view;
65 bindGridView(view, mContext, object)
    [all...]
  /packages/apps/Settings/src/com/android/settings/
SetupChooseLockPassword.java 26 import android.view.LayoutInflater;
27 import android.view.View;
28 import android.view.ViewGroup;
29 import android.view.WindowInsets;
97 implements View.OnApplyWindowInsetsListener {
100 public View onCreateView(LayoutInflater inflater, ViewGroup container,
102 final View view = inflater.inflate(R.layout.setup_template, container, false); local
103 View scrollView = view.findViewById(R.id.bottom_scroll_view)
    [all...]
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiSettingsForSetupWizard.java 24 import android.view.Gravity;
25 import android.view.LayoutInflater;
26 import android.view.Menu;
27 import android.view.MenuItem;
28 import android.view.View;
29 import android.view.View.OnClickListener;
30 import android.view.ViewGroup;
51 private View mAddOtherNetworkItem
60 final View view = inflater.inflate(R.layout.setup_preference, container, false); local
    [all...]
  /packages/experimental/NotificationLog/src/com/android/notificationlog/
NotificationLogActivity.java 14 import android.view.LayoutInflater;
15 import android.view.View;
16 import android.view.ViewGroup;
71 public View getView(int position, View convertView, ViewGroup parent) {
72 View view; local
74 view = mInflater.inflate(R.layout.row, parent, false);
76 view = convertView
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/
AccessibilityUtils.java 24 import android.support.v4.view.accessibility.AccessibilityEventCompat;
27 import android.view.MotionEvent;
28 import android.view.View;
29 import android.view.ViewGroup;
30 import android.view.ViewParent;
31 import android.view.accessibility.AccessibilityEvent;
32 import android.view.accessibility.AccessibilityManager;
33 import android.view.inputmethod.EditorInfo;
198 * @param view The source view
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
GridLayoutConverter.java 117 private List<View> mViews;
137 // Locate the view for the layout
180 for (View view : mViews) {
181 if (view.mElement == mLayout) {
185 int gravity = GravityHelper.getGravity(view.mGravity, 0);
187 columnFixed.put(view.mCol, true);
188 } else if (!columnFixed.containsKey(view.mCol)) {
189 columnFixed.put(view.mCol, false);
192 rowFixed.put(view.mRow, true)
834 View view = new View(info, element); local
857 View view = mElementToView.get(child); local
879 View view = mElementToView.get(child); local
    [all...]
  /cts/tests/tests/opengl/src/android/opengl/cts/
OpenGLES20ActivityOne.java 23 import android.view.Window;
24 import android.view.WindowManager;
35 OpenGLES20View view; field in class:OpenGLES20ActivityOne
49 view = new OpenGLES20View(this, viewType, viewIndex, mLatch);
50 setContentView(view);
74 if (view != null) {
75 view.onPause();
82 if (view != null) {
83 view.onResume();
  /cts/tests/tests/view/src/android/view/animation/cts/
AccelerateDecelerateInterpolatorTest.java 17 package android.view.animation.cts;
19 import com.android.cts.view.R;
27 import android.view.View;
28 import android.view.animation.AccelerateDecelerateInterpolator;
29 import android.view.animation.AlphaAnimation;
30 import android.view.animation.Animation;
31 import android.view.animation.AnimationUtils;
32 import android.view.animation.Interpolator;
33 import android.view.animation.Transformation
    [all...]
LinearInterpolatorTest.java 17 package android.view.animation.cts;
21 import android.view.View;
22 import android.view.animation.AlphaAnimation;
23 import android.view.animation.Animation;
24 import android.view.animation.AnimationUtils;
25 import android.view.animation.Interpolator;
26 import android.view.animation.LinearInterpolator;
27 import android.view.animation.Transformation;
29 import com.android.cts.view.R
    [all...]

Completed in 1020 milliseconds

<<31323334353637383940>>