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

<<21222324252627282930>>

  /packages/apps/Browser/src/com/android/browser/stub/
NullController.java 6 import android.view.ActionMode;
7 import android.view.ContextMenu;
8 import android.view.KeyEvent;
9 import android.view.Menu;
10 import android.view.MenuItem;
11 import android.view.MotionEvent;
12 import android.view.View;
13 import android.view.ContextMenu.ContextMenuInfo;
85 public void onCreateContextMenu(ContextMenu menu, View v
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
EmailAddressAdapter.java 24 import android.view.LayoutInflater;
25 import android.view.View;
26 import android.view.ViewGroup;
44 protected View inflateItemView(ViewGroup parent) {
49 protected View inflateItemViewLoading(ViewGroup parent) {
54 protected void bindView(View view, String directoryType, String directoryName,
56 TextView text1 = (TextView)view.findViewById(R.id.text1);
57 TextView text2 = (TextView)view.findViewById(R.id.text2)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/filmstrip/
ImageData.java 21 import android.view.View;
28 // View types.
49 * when deciding the view size of this ImageData, just use full screen
56 * The final layout of the view returned by
66 * The final layout of the view returned by
103 * Gives the data a hint when its view is going to be displayed.
105 * its corresponding view every time.
110 * Gives the data a hint when its view is going to be removed from the
111 * view hierarchy. {@code FilmStripView} should always call thi
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/widget/
SingleItemAdapter.java 18 import android.view.View;
19 import android.view.ViewGroup;
39 public View getView(int position, View convertView, ViewGroup parent) {
44 * Creates the view.
46 protected abstract View getView(View convertView, ViewGroup parent);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/presets/
PresetManagementDialog.java 21 import android.view.LayoutInflater;
22 import android.view.View;
23 import android.view.ViewGroup;
30 public class PresetManagementDialog extends DialogFragment implements View.OnClickListener {
35 public View onCreateView(LayoutInflater inflater, ViewGroup container,
37 View view = inflater.inflate(R.layout.filtershow_presets_management_dialog, container); local
41 mEditText = (EditText) view.findViewById(R.id.editView);
42 view.findViewById(R.id.cancel).setOnClickListener(this)
    [all...]
  /packages/apps/Stk/src/com/android/stk/
StkDigitsKeyListener.java 20 import android.view.KeyEvent;
21 import android.view.inputmethod.EditorInfo;
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
CandidatesViewManager.java 22 import android.view.Gravity;
23 import android.view.View;
24 import android.view.ViewGroup;
25 import android.view.ViewGroup.LayoutParams;
34 * The interface of candidates view manager used by {@link OpenWnn}.
39 /** Size of candidates view (normal) */
41 /** Size of candidates view (full) */
43 /** Size of candidates view (close/non-display) */
67 /** The view of the LongPressDialog *
    [all...]
InputViewManager.java 19 import android.view.View;
21 import android.view.inputmethod.EditorInfo;
24 * The interface of input view manager used by OpenWnn.
30 * Initialize the input view.
36 * @return The input view created in the initialize process; {@code null} if cannot create a input view.
38 public View initView(OpenWnn parent, int width, int height);
41 * Get the input view being used currently.
43 * @return The input view; {@code null} if no input view is used currently
    [all...]
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/utils/
ApiHelper.java 21 import android.view.View;
51 * Applies {@link View#setSystemUiVisibility(int)}, available only starting with API 11.
54 public void View_setSystemUiVisibility(View view, int visibility) {
  /cts/tests/tests/graphics/src/android/opengl/cts/
GLSurfaceViewTest.java 66 GLSurfaceView view = mActivity.getView(); local
72 view.onPause();
77 view.onResume();
91 GLSurfaceView view = mActivity.getView(); local
96 view.onPause();
100 view.onResume();
  /cts/tests/tests/view/src/android/view/inputmethod/cts/
InputBindingTest.java 17 package android.view.inputmethod.cts;
23 import android.view.View;
24 import android.view.inputmethod.BaseInputConnection;
25 import android.view.inputmethod.InputBinding;
30 View view = new View(getContext()); local
31 BaseInputConnection bic = new BaseInputConnection(view, false);
  /developers/build/prebuilts/gradle/NavigationDrawer/Application/src/main/java/com/example/android/navigationdrawer/
PlanetAdapter.java 21 import android.view.LayoutInflater;
22 import android.view.View;
23 import android.view.ViewGroup;
38 public void onClick(View view, int position);
61 View v = vi.inflate(R.layout.drawer_list_item, parent, false);
69 holder.mTextView.setOnClickListener(new View.OnClickListener() {
71 public void onClick(View view) {
    [all...]
  /developers/build/prebuilts/gradle/SpeedTracker/Wearable/src/main/java/com/example/android/wearable/speedtracker/ui/
SpeedPickerListAdapter.java 20 import android.support.wearable.view.WearableListView;
21 import android.view.LayoutInflater;
22 import android.view.View;
23 import android.view.ViewGroup;
29 * A {@link android.support.wearable.view.WearableListView.Adapter} that is used to populate the
48 public ItemViewHolder(View itemView) {
50 // find the text view within the custom item's layout
72 // retrieve the text view
74 TextView view = itemHolder.mTextView local
    [all...]
  /developers/samples/android/ui/views/NavigationDrawer/Application/src/main/java/com/example/android/navigationdrawer/
PlanetAdapter.java 21 import android.view.LayoutInflater;
22 import android.view.View;
23 import android.view.ViewGroup;
38 public void onClick(View view, int position);
61 View v = vi.inflate(R.layout.drawer_list_item, parent, false);
69 holder.mTextView.setOnClickListener(new View.OnClickListener() {
71 public void onClick(View view) {
    [all...]
  /developers/samples/android/wearable/wear/SpeedTracker/Wearable/src/main/java/com/example/android/wearable/speedtracker/ui/
SpeedPickerListAdapter.java 20 import android.support.wearable.view.WearableListView;
21 import android.view.LayoutInflater;
22 import android.view.View;
23 import android.view.ViewGroup;
29 * A {@link android.support.wearable.view.WearableListView.Adapter} that is used to populate the
48 public ItemViewHolder(View itemView) {
50 // find the text view within the custom item's layout
72 // retrieve the text view
74 TextView view = itemHolder.mTextView local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
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;
  /development/samples/browseable/NavigationDrawer/src/com.example.android.navigationdrawer/
PlanetAdapter.java 21 import android.view.LayoutInflater;
22 import android.view.View;
23 import android.view.ViewGroup;
38 public void onClick(View view, int position);
61 View v = vi.inflate(R.layout.drawer_list_item, parent, false);
69 holder.mTextView.setOnClickListener(new View.OnClickListener() {
71 public void onClick(View view) {
    [all...]
  /development/samples/browseable/SpeedTracker/Wearable/src/com.example.android.wearable.speedtracker/ui/
SpeedPickerListAdapter.java 20 import android.support.wearable.view.WearableListView;
21 import android.view.LayoutInflater;
22 import android.view.View;
23 import android.view.ViewGroup;
29 * A {@link android.support.wearable.view.WearableListView.Adapter} that is used to populate the
48 public ItemViewHolder(View itemView) {
50 // find the text view within the custom item's layout
72 // retrieve the text view
74 TextView view = itemHolder.mTextView local
    [all...]
  /development/samples/devbytes/animation/ListViewItemAnimations/src/com/example/android/listviewitemanimations/
StableArrayAdapter.java 23 import android.view.View;
24 import android.view.ViewGroup;
30 View.OnTouchListener mTouchListener;
33 List<String> objects, View.OnTouchListener listener) {
53 public View getView(int position, View convertView, ViewGroup parent) {
54 View view = super.getView(position, convertView, parent); local
55 if (view != convertView)
    [all...]
  /development/samples/devbytes/animation/ListViewRemovalAnimation/src/com/example/android/listviewremovalanimation/
StableArrayAdapter.java 23 import android.view.View;
24 import android.view.ViewGroup;
30 View.OnTouchListener mTouchListener;
33 List<String> objects, View.OnTouchListener listener) {
53 public View getView(int position, View convertView, ViewGroup parent) {
54 View view = super.getView(position, convertView, parent); local
55 if (view != convertView)
    [all...]
  /development/samples/devbytes/animation/SlidingFragments/src/com/example/android/slidingfragments/
TextFragment.java 24 import android.view.LayoutInflater;
25 import android.view.View;
26 import android.view.ViewGroup;
30 View.OnClickListener clickListener;
33 public View onCreateView(LayoutInflater inflater, ViewGroup container,
35 View view = inflater.inflate(R.layout.text_fragment, container, false); local
36 view.setOnClickListener(clickListener);
37 return view;
    [all...]
  /external/chromium-trace/trace-viewer/src/about_tracing/
profiling_view.css 6 .profiling-view {
13 .profiling-view .controls .save {
17 .profiling-view > .container {
  /external/chromium_org/chrome/browser/ui/views/app_list/win/
app_list_win.cc 81 void AppListWin::MoveNearCursor(app_list::AppListView* view) {
84 gfx::Screen::GetScreenFor(view->GetWidget()->GetNativeView());
87 view->SetBubbleArrow(views::BubbleBorder::FLOAT);
90 view->SetAnchorPoint(FindAnchorPoint(view->GetPreferredSize(),
94 view->ShouldCenterWindow()));
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
ContentViewCoreFocusTest.java 12 import android.view.View;
20 * Test that content view core responds to focus changes correctly.
30 public void showSoftInput(View view, int flags, ResultReceiver resultReceiver) {
42 public boolean isActive(View view) {
55 // Test the IME window is hidden from the content view when the content
56 // view loses its focus
58 final View view = contentViewCore.getContainerView() local
    [all...]
  /external/chromium_org/content/renderer/
mouse_lock_dispatcher_browsertest.cc 28 // fixture containing a RenderViewImpl view() and interacting to that interface.
33 route_id_ = view()->GetRoutingID();
45 RenderViewImpl* view() { return static_cast<RenderViewImpl*>(view_); } function in class:content::__anon12399::MouseLockDispatcherTest
46 MouseLockDispatcher* dispatcher() { return view()->mouse_lock_dispatcher(); }
57 EXPECT_FALSE(view()->isPointerLocked());
60 EXPECT_TRUE(view()->requestPointerLock());
61 view()->OnMessageReceived(ViewMsg_LockMouse_ACK(route_id_, true));
62 EXPECT_TRUE(view()->isPointerLocked());
65 view()->requestPointerUnlock();
66 view()->OnMessageReceived(ViewMsg_MouseLockLost(route_id_))
    [all...]

Completed in 914 milliseconds

<<21222324252627282930>>