HomeSort by relevance Sort by last modified time
    Searched full:view (Results 251 - 275 of 3846) sorted by null

<<11121314151617181920>>

  /dalvik/tools/dmtracedump/
filters 37 android.view.View.draw()
38 android.view.ViewGroup
  /development/samples/ApiDemos/src/com/example/android/apis/
_package.html 19 <li> <a href="com.android.sdk.view">sdk.view</a> for examples
20 of using the android.view APIs.
  /development/samples/ApiDemos/src/com/example/android/apis/app/
IncomingMessage.java 28 import android.view.LayoutInflater;
29 import android.view.View;
43 public void onClick(View v) {
52 * the text of an incoming message. It uses a custom view to do so.
55 // create the view
56 View view = inflateView(R.layout.incoming_message_panel); local
58 // set the text in the view
59 TextView tv = (TextView)view.findViewById(R.id.message)
    [all...]
NotifyingController.java 27 import android.view.View;
28 import android.view.View.OnClickListener;
50 public void onClick(View v) {
57 public void onClick(View v) {
  /development/samples/ApiDemos/src/com/example/android/apis/view/
AutoComplete4.java 17 package com.example.android.apis.view;
27 import android.view.LayoutInflater;
28 import android.view.View;
29 import android.view.ViewGroup;
60 public View newView(Context context, Cursor cursor, ViewGroup parent) {
62 final TextView view = (TextView) inflater.inflate( local
64 view.setText(cursor.getString(5));
65 return view;
69 public void bindView(View view, Context context, Cursor cursor)
    [all...]
Gallery1.java 17 package com.example.android.apis.view;
25 import android.view.ContextMenu;
26 import android.view.MenuItem;
27 import android.view.View;
28 import android.view.ViewGroup;
29 import android.view.ContextMenu.ContextMenuInfo;
45 // Reference the Gallery view
52 public void onItemClick(AdapterView parent, View v, int position, long id) {
62 public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo)
    [all...]
LayoutAnimation2.java 17 package com.example.android.apis.view;
21 import android.view.animation.AlphaAnimation;
22 import android.view.animation.Animation;
23 import android.view.animation.AnimationSet;
24 import android.view.animation.LayoutAnimationController;
25 import android.view.animation.TranslateAnimation;
  /frameworks/base/core/java/android/text/method/
KeyListener.java 20 import android.view.KeyEvent;
21 import android.view.View;
27 * {@link android.view.inputmethod.InputMethod}; it should only be used
57 public boolean onKeyDown(View view, Editable text,
65 public boolean onKeyUp(View view, Editable text,
73 public boolean onKeyOther(View view, Editable text, KeyEvent event)
    [all...]
TransformationMethod.java 20 import android.view.View;
37 public CharSequence getTransformation(CharSequence source, View view);
43 public void onFocusChanged(View view, CharSequence sourceText,
  /frameworks/base/core/java/android/widget/
Checkable.java 26 * Change the checked state of the view
33 * @return The current checked state of the view
38 * Change the checked state of the view to the inverse of its current state
ListView.java 35 import android.view.FocusFinder;
36 import android.view.KeyEvent;
37 import android.view.MotionEvent;
38 import android.view.SoundEffectConstants;
39 import android.view.View;
40 import android.view.ViewDebug;
41 import android.view.ViewGroup;
42 import android.view.ViewParent;
43 import android.view.accessibility.AccessibilityEvent
108 public View view; field in class:ListView.FixedViewInfo
    [all...]
BaseAdapter.java 21 import android.view.View;
22 import android.view.ViewGroup;
46 * Notifies the attached View that the underlying data has been changed
65 public View getDropDownView(int position, View convertView, ViewGroup parent) {
Button.java 22 import android.view.MotionEvent;
23 import android.view.KeyEvent;
42 * button.setOnClickListener(new View.OnClickListener() {
43 * public void onClick(View v) {
55 * {@link android.R.styleable#View View Attributes}
RemoteViews.java 34 import android.view.LayoutInflater;
35 import android.view.RemotableViewMethod;
36 import android.view.View;
37 import android.view.ViewGroup;
38 import android.view.LayoutInflater.Filter;
39 import android.view.View.OnClickListener;
50 * A class that describes a view hierarchy that can be displayed in
71 * An array of actions to perform on the view tree once it has bee
444 final View view = root.findViewById(viewId); local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/gridview/
GridThrasher.java 25 import android.view.View;
26 import android.view.ViewGroup;
27 import android.view.LayoutInflater;
89 public View getView(int position, View convertView, ViewGroup parent) {
90 TextView view; local
93 view = (TextView) mInflater.inflate(android.R.layout.simple_list_item_1, null);
95 view = (TextView) convertView;
97 view.setText(mTitles[position] + " " + mVersion[position])
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/layout/frame/
FrameLayoutGravityTest.java 23 import android.view.View;
28 private View mLeftView;
29 private View mRightView;
30 private View mCenterHorizontalView;
31 private View mLeftCenterVerticalView;
32 private View mRighCenterVerticalView;
33 private View mCenterView;
34 private View mLeftBottomView;
35 private View mRightBottomView
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
DragSource.java 19 import android.view.View;
27 void onDropCompleted(View target, boolean success);
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/
UninstallAppProgress.java 27 import android.view.KeyEvent;
28 import android.view.View;
29 import android.view.Window;
30 import android.view.View.OnClickListener;
49 private View mOkPanel;
65 mProgressBar.setVisibility(View.INVISIBLE);
67 mOkPanel.setVisibility(View.VISIBLE);
106 mOkPanel = (View)findViewById(R.id.ok_panel)
    [all...]
  /packages/apps/Settings/src/com/android/settings/
CreateShortcut.java 5 import android.view.View;
16 @Override protected void onListItemClick(ListView l, View v, int position, long id) {
  /cts/tests/tests/widget/src/android/widget/cts/
SlidingDrawerTest.java 35 import android.view.MotionEvent;
36 import android.view.View;
37 import android.view.animation.cts.DelayedCheck;
107 View handle = drawer.getHandle();
119 View content = drawer.getContent();
144 View content = drawer.getContent();
146 assertEquals(View.GONE, content.getVisibility());
150 assertEquals(View.VISIBLE, content.getVisibility());
154 assertEquals(View.GONE, content.getVisibility())
    [all...]
  /cts/tests/src/android/app/cts/
ListActivityTestHelper.java 22 import android.view.View;
30 public View view; field in class:ListActivityTestHelper
40 public void onListItemClick(ListView l, View v, int position, long id) {
43 view = v;
  /development/apps/Development/src/com/android/development/
BadBehaviorActivity.java 35 import android.view.View;
129 crash_system.setOnClickListener(new View.OnClickListener() {
130 public void onClick(View v) {
142 crash_main.setOnClickListener(new View.OnClickListener() {
143 public void onClick(View v) { throw new BadBehaviorException(); }
147 crash_thread.setOnClickListener(new View.OnClickListener() {
148 public void onClick(View v) {
157 crash_native.setOnClickListener(new View.OnClickListener() {
158 public void onClick(View v)
    [all...]
  /development/samples/TicTacToeMain/src/com/example/android/tictactoe/
MainActivity.java 22 import android.view.View;
23 import android.view.View.OnClickListener;
37 public void onClick(View v) {
44 public void onClick(View v) {
  /external/webkit/WebCore/platform/mac/
WebCoreView.m 50 NSView *view = [self documentView];
51 return view ? [view _webcore_effectiveFirstResponder] : [super _webcore_effectiveFirstResponder];
60 NSView *view = [self contentView];
61 return view ? [view _webcore_effectiveFirstResponder] : [super _webcore_effectiveFirstResponder];
  /frameworks/base/core/java/com/android/internal/view/
IInputMethodManager.aidl 17 package com.android.internal.view;
20 import android.view.inputmethod.InputMethodInfo;
21 import android.view.inputmethod.EditorInfo;
22 import com.android.internal.view.InputBindResult;
23 import com.android.internal.view.IInputContext;
24 import com.android.internal.view.IInputMethodClient;

Completed in 1004 milliseconds

<<11121314151617181920>>