/packages/apps/InCallUI/src/com/android/incallui/ |
CircularRevealActivity.java | 30 import android.view.Display; 31 import android.view.View; 32 import android.view.ViewAnimationUtils; 33 import android.view.ViewOutlineProvider; 34 import android.view.ViewTreeObserver; 35 import android.view.ViewTreeObserver.OnPreDrawListener; 85 final View view = getWindow().getDecorView(); local 90 view.setOutlineProvider(new ViewOutlineProvider() 152 final View view = getWindow().getDecorView(); local [all...] |
/packages/apps/Mms/src/com/android/mms/ui/ |
Presenter.java | 34 public Presenter(Context context, ViewInterface view, Model model) { 36 mView = view; 46 public void setView(ViewInterface view) { 47 mView = view;
|
MmsThumbnailPresenter.java | 38 public MmsThumbnailPresenter(Context context, ViewInterface view, Model model) { 39 super(context, view, model); 51 private void presentFirstSlide(SlideViewInterface view, SlideModel slide) { 52 view.reset(); 55 presentImageThumbnail(view, slide.getImage()); 57 presentVideoThumbnail(view, slide.getVideo()); 59 presentAudioThumbnail(view, slide.getAudio()); 90 private void presentVideoThumbnail(SlideViewInterface view, VideoModel video) { 94 private void presentImageThumbnail(SlideViewInterface view, ImageModel image) { 98 protected void presentAudioThumbnail(SlideViewInterface view, AudioModel audio) [all...] |
/packages/apps/PhoneCommon/src/com/android/phone/common/animation/ |
AnimUtils.java | 22 import android.view.View; 23 import android.view.ViewPropertyAnimator; 24 import android.view.animation.Interpolator; 25 import android.view.animation.PathInterpolator; 42 public static void crossFadeViews(View fadeIn, View fadeOut, int duration) { 47 public static void fadeOut(View fadeOut, int duration) { 51 public static void fadeOut(final View fadeOut, int durationMs, 59 fadeOut.setVisibility(View.GONE) [all...] |
/packages/apps/Settings/src/com/android/settings/fuelgauge/ |
WallOfTextPreference.java | 22 import android.view.View; 45 protected void onBindView(View view) { 46 super.onBindView(view); 47 final TextView summary = (TextView) view.findViewById(android.R.id.summary);
|
/packages/inputmethods/LatinIME/java-overridable/src/com/android/inputmethod/latin/ |
SpecialKeyDetector.java | 20 import android.view.KeyEvent;
|
/packages/services/Telecomm/src/com/android/server/telecom/ |
MultiLineTitleEditTextPreference.java | 22 import android.view.View; 45 * <view class="com.android.server.telecom.Foo$Bar"> as you can with regular views. 65 protected void onBindView(View view) { 66 super.onBindView(view); 68 TextView textView = (TextView) view.findViewById(com.android.internal.R.id.title);
|
/developers/build/prebuilts/gradle/ActivitySceneTransitionBasic/Application/src/main/java/com/example/android/activityscenetransitionbasic/ |
MainActivity.java | 27 import android.view.View; 28 import android.view.ViewGroup; 62 public void onItemClick(AdapterView<?> adapterView, View view, int position, long id) { 78 // Now we provide a list of Pair items which contain the view we can transitioning 79 // from, and the name of the view it is transitioning to, in the launched activity 80 new Pair<View, String>(view.findViewById(R.id.imageview_item), 82 new Pair<View, String>(view.findViewById(R.id.textview_name) [all...] |
/developers/samples/android/ui/activityscenetransition/ActivitySceneTransitionBasic/Application/src/main/java/com/example/android/activityscenetransitionbasic/ |
MainActivity.java | 27 import android.view.View; 28 import android.view.ViewGroup; 62 public void onItemClick(AdapterView<?> adapterView, View view, int position, long id) { 78 // Now we provide a list of Pair items which contain the view we can transitioning 79 // from, and the name of the view it is transitioning to, in the launched activity 80 new Pair<View, String>(view.findViewById(R.id.imageview_item), 82 new Pair<View, String>(view.findViewById(R.id.textview_name) [all...] |
/development/samples/browseable/ActivitySceneTransitionBasic/src/com.example.android.activityscenetransitionbasic/ |
MainActivity.java | 27 import android.view.View; 28 import android.view.ViewGroup; 62 public void onItemClick(AdapterView<?> adapterView, View view, int position, long id) { 78 // Now we provide a list of Pair items which contain the view we can transitioning 79 // from, and the name of the view it is transitioning to, in the launched activity 80 new Pair<View, String>(view.findViewById(R.id.imageview_item), 82 new Pair<View, String>(view.findViewById(R.id.textview_name) [all...] |
/cts/suite/cts/deviceTests/opengl/jni/graphics/ |
TransformationNode.cpp | 24 void TransformationNode::before(Program& program, Matrix& model, Matrix& view, 32 void TransformationNode::after(Program& program, Matrix& model, Matrix& view,
|
/cts/tests/tests/animation/src/android/animation/cts/ |
AnimationActivity.java | 36 import android.view.MotionEvent; 37 import android.view.View; 38 import android.view.ViewGroup; 39 import android.view.animation.AccelerateInterpolator; 60 public AnimationView view = null; field in class:AnimationActivity 77 view = new AnimationView(this); 79 viewGroup.addView(view); 94 return createAnimator(view.newBall, "y", 1000, ValueAnimator.INFINITE, repeatMode, 99 return createAnimator(view.newBall, "y", 1000, repeatCount, ValueAnimator.REVERSE [all...] |
/cts/tests/tests/dpi/src/android/dpi/cts/ |
OrientationActivity.java | 21 import android.view.Window; 22 import android.view.WindowManager;
|
/cts/tests/tests/view/src/android/view/cts/ |
MockViewStub.java | 17 package android.view.cts; 21 import android.view.View; 23 public class MockViewStub extends View {
|
TouchDelegateTest.java | 17 package android.view.cts; 25 import android.view.MotionEvent; 26 import android.view.TouchDelegate; 27 import android.view.View; 28 import android.view.ViewGroup; 47 super("com.android.cts.view", MockActivity.class); 85 View view = new View(mActivity) local [all...] |
WindowManager_BadTokenExceptionTest.java | 16 package android.view.cts; 19 import android.view.WindowManager.BadTokenException;
|
/developers/build/prebuilts/gradle/CardView/Application/src/main/java/com/example/android/cardview/ |
CardViewFragment.java | 23 import android.view.LayoutInflater; 24 import android.view.View; 25 import android.view.ViewGroup; 73 public View onCreateView(LayoutInflater inflater, ViewGroup container, 80 public void onViewCreated(View view, Bundle savedInstanceState) { 81 super.onViewCreated(view, savedInstanceState); 82 mCardView = (CardView) view.findViewById(R.id.cardview); 83 mRadiusSeekBar = (SeekBar) view.findViewById(R.id.cardview_radius_seekbar) [all...] |
/developers/build/prebuilts/gradle/SlidingTabsColors/Application/src/main/java/com/example/android/slidingtabscolors/ |
ContentFragment.java | 21 import android.view.LayoutInflater; 22 import android.view.View; 23 import android.view.ViewGroup; 28 * {@link android.support.v4.view.ViewPager}. 54 public View onCreateView(LayoutInflater inflater, ViewGroup container, 60 public void onViewCreated(View view, Bundle savedInstanceState) { 61 super.onViewCreated(view, savedInstanceState); 66 TextView title = (TextView) view.findViewById(R.id.item_title) [all...] |
/developers/samples/android/ui/views/CardView/Application/src/main/java/com/example/android/cardview/ |
CardViewFragment.java | 23 import android.view.LayoutInflater; 24 import android.view.View; 25 import android.view.ViewGroup; 73 public View onCreateView(LayoutInflater inflater, ViewGroup container, 80 public void onViewCreated(View view, Bundle savedInstanceState) { 81 super.onViewCreated(view, savedInstanceState); 82 mCardView = (CardView) view.findViewById(R.id.cardview); 83 mRadiusSeekBar = (SeekBar) view.findViewById(R.id.cardview_radius_seekbar) [all...] |
/developers/samples/android/ui/views/SlidingTabs/SlidingTabsColors/Application/src/main/java/com/example/android/slidingtabscolors/ |
ContentFragment.java | 21 import android.view.LayoutInflater; 22 import android.view.View; 23 import android.view.ViewGroup; 28 * {@link android.support.v4.view.ViewPager}. 54 public View onCreateView(LayoutInflater inflater, ViewGroup container, 60 public void onViewCreated(View view, Bundle savedInstanceState) { 61 super.onViewCreated(view, savedInstanceState); 66 TextView title = (TextView) view.findViewById(R.id.item_title) [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
ProgressBar2.java | 17 package com.example.android.apis.view; 23 import android.view.Window;
|
ScrollBar3.java | 17 package com.example.android.apis.view; 21 import android.view.View; 33 findViewById(R.id.view3).setScrollBarStyle(View.SCROLLBARS_INSIDE_INSET);
|
/development/samples/Support7Demos/src/com/example/android/supportv7/app/ |
ToolbarUsage.java | 27 import android.support.v4.view.MenuItemCompat; 29 import android.support.v7.view.ActionMode; 34 import android.view.LayoutInflater; 35 import android.view.Menu; 36 import android.view.MenuInflater; 37 import android.view.MenuItem; 38 import android.view.View; 39 import android.view.ViewGroup; 54 // Retrieve the Toolbar from our content view, and set it as the action ba [all...] |
/development/samples/browseable/AppRestrictionSchema/src/com.example.android.apprestrictionschema/ |
AppRestrictionSchemaFragment.java | 24 import android.view.LayoutInflater; 25 import android.view.View; 26 import android.view.ViewGroup; 38 public class AppRestrictionSchemaFragment extends Fragment implements View.OnClickListener { 48 public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, 54 public void onViewCreated(View view, @Nullable Bundle savedInstanceState) { 55 mTextSayHello = (TextView) view.findViewById(R.id.say_hello_explanation); 56 mButtonSayHello = (Button) view.findViewById(R.id.say_hello) [all...] |
/development/samples/browseable/CardView/src/com.example.android.cardview/ |
CardViewFragment.java | 23 import android.view.LayoutInflater; 24 import android.view.View; 25 import android.view.ViewGroup; 73 public View onCreateView(LayoutInflater inflater, ViewGroup container, 80 public void onViewCreated(View view, Bundle savedInstanceState) { 81 super.onViewCreated(view, savedInstanceState); 82 mCardView = (CardView) view.findViewById(R.id.cardview); 83 mRadiusSeekBar = (SeekBar) view.findViewById(R.id.cardview_radius_seekbar) [all...] |