HomeSort by relevance Sort by last modified time
    Searched refs:View (Results 226 - 250 of 7049) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/grid/
AnimateableGridViewBounds.java 19 import android.view.View;
20 import com.android.systemui.shared.recents.view.AnimateableViewBounds;
25 public AnimateableGridViewBounds(View source, int cornerRadius) {
  /frameworks/data-binding/integration-tests/MultiModuleTestApp/testlibrary/src/main/java/android/databinding/testlibrary/
TestLibObject.java 21 import android.view.View;
36 public void clickHandler(View view) {
  /frameworks/support/cardview/src/main/java/androidx/cardview/widget/
CardViewDelegate.java 19 import android.view.View;
33 View getCardView();
  /packages/apps/Dialer/java/com/android/incallui/answer/impl/hint/
AnswerHint.java 19 import android.view.LayoutInflater;
20 import android.view.View;
21 import android.view.ViewGroup;
33 void onCreateView(LayoutInflater inflater, ViewGroup container, View puck, TextView hintText);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/controller/
Control.java 19 import android.view.View;
20 import android.view.ViewGroup;
27 public View getTopView();
  /packages/apps/Launcher2/src/com/android/launcher2/
DragSource.java 19 import android.view.View;
44 void onDropCompleted(View target, DragObject d, boolean isFlingToDelete, boolean success);
FocusOnlyTabWidget.java 21 import android.view.View;
37 public View getSelectedTab() {
40 View v = getChildTabViewAt(i);
48 public int getChildTabIndex(View v) {
59 View tab = null;
63 View v = getChildTabViewAt(i);
75 public void superOnFocusChange(View v, boolean hasFocus) {
80 public void onFocusChange(android.view.View v, boolean hasFocus)
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
DragSource.java 19 import android.view.View;
33 void onDropCompleted(View target, DragObject d, boolean success);
  /packages/apps/StorageManager/src/com/android/storagemanager/utils/
Utils.java 19 import android.view.View;
20 import android.view.animation.Animation;
21 import android.view.animation.Animation.AnimationListener;
22 import android.view.animation.AnimationUtils;
27 View loading, View doneLoading, boolean done, boolean animate) {
32 private static void setViewShown(final View view, boolean shown, boolean animate) {
36 view.getContext()
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
UserDictionaryToolsListFocus.java 19 import android.view.View;
24 * The view class of the stroke and the candidate.
29 /** the information of the pair of view */
42 * Get the pair of view
44 * @return The information of the pair of view
46 public View getPairView() {
51 * Set the pair of view
53 * @param pairView The information of the pair of view
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/utils/
ApiHelper_11.java 20 import android.view.View;
29 * Applies {@link View#setSystemUiVisibility(int)}, available only starting with API 11.
33 public void View_setSystemUiVisibility(View view, int visibility) {
34 view.setSystemUiVisibility(visibility);
  /sdk/testapps/customPropAnimTest/src/com/android/custompropertyanimation/
MyView.java 4 import android.view.View;
6 public class MyView extends View {
  /cts/tests/framework/base/windowmanager/dndsourceapp/src/android/server/wm/dndsourceapp/
DragSource.java 28 import android.view.MotionEvent;
29 import android.view.View;
55 View view = getLayoutInflater().inflate(R.layout.source_activity, null); local
56 setContentView(view);
61 setUpDragSource("cancel_soon", plainUri, View.DRAG_FLAG_GLOBAL);
63 setUpDragSource("grant_none", plainUri, View.DRAG_FLAG_GLOBAL);
65 View.DRAG_FLAG_GLOBAL | View.DRAG_FLAG_GLOBAL_URI_READ)
    [all...]
  /developers/build/prebuilts/gradle/BatchStepSensor/Application/src/main/java/com/example/android/batchstepsensor/cardstream/
CardStreamAnimator.java 22 import android.view.View;
49 * Define disappearing animation of a child which fired when a view is removed programmatically
57 * Define appearing animation of a child which fired when a view is added programmatically
66 * which fired when a view is not moved enough to be removed.
68 * @param view target view
73 public abstract ObjectAnimator getSwipeInAnimator(View view, float deltaX, float deltaY);
77 * which fired when a view is removing by a user swipe action
    [all...]
  /developers/build/prebuilts/gradle/JumpingJack/Wearable/src/main/java/com/example/android/wearable/jumpingjack/fragments/
SettingsFragment.java 24 import android.view.LayoutInflater;
25 import android.view.View;
26 import android.view.ViewGroup;
35 public View onCreateView(LayoutInflater inflater, ViewGroup container,
37 View view = inflater.inflate(R.layout.setting_layout, container, false); local
38 Button button = (Button) view.findViewById(R.id.btn);
39 button.setOnClickListener(new View.OnClickListener() {
41 public void onClick(View v)
    [all...]
  /developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/edgecases/
MultipleStepsCreditCardActivity.java 18 import android.view.View;
32 View.AUTOFILL_HINT_CREDIT_CARD_NUMBER);
34 View.AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_MONTH);
36 View.AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_YEAR);
38 View.AUTOFILL_HINT_CREDIT_CARD_SECURITY_CODE);
  /developers/samples/android/wearable/wear/JumpingJack/Wearable/src/main/java/com/example/android/wearable/jumpingjack/fragments/
SettingsFragment.java 24 import android.view.LayoutInflater;
25 import android.view.View;
26 import android.view.ViewGroup;
35 public View onCreateView(LayoutInflater inflater, ViewGroup container,
37 View view = inflater.inflate(R.layout.setting_layout, container, false); local
38 Button button = (Button) view.findViewById(R.id.btn);
39 button.setOnClickListener(new View.OnClickListener() {
41 public void onClick(View v)
    [all...]
  /development/samples/browseable/BatchStepSensor/src/com.example.android.batchstepsensor/cardstream/
CardStreamAnimator.java 22 import android.view.View;
49 * Define disappearing animation of a child which fired when a view is removed programmatically
57 * Define appearing animation of a child which fired when a view is added programmatically
66 * which fired when a view is not moved enough to be removed.
68 * @param view target view
73 public abstract ObjectAnimator getSwipeInAnimator(View view, float deltaX, float deltaY);
77 * which fired when a view is removing by a user swipe action
    [all...]
  /development/samples/browseable/JumpingJack/src/com.example.android.wearable.jumpingjack/fragments/
SettingsFragment.java 24 import android.view.LayoutInflater;
25 import android.view.View;
26 import android.view.ViewGroup;
35 public View onCreateView(LayoutInflater inflater, ViewGroup container,
37 View view = inflater.inflate(R.layout.setting_layout, container, false); local
38 Button button = (Button) view.findViewById(R.id.btn);
39 button.setOnClickListener(new View.OnClickListener() {
41 public void onClick(View v)
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowViewMeasureSpec.java 6 import android.view.View;
9 * Shadow for {@code View.MeasureSpec} inner class.
13 @Implements(View.MeasureSpec.class)
41 if (mode == View.MeasureSpec.UNSPECIFIED)
43 else if (mode == View.MeasureSpec.EXACTLY)
45 else if (mode == View.MeasureSpec.AT_MOST)
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowViewAnimator.java 3 import android.view.View;
4 import android.view.ViewGroup;
23 View child = ((ViewGroup) realView).getChildAt(i);
24 child.setVisibility(i == whichChild ? View.VISIBLE : View.GONE);
29 public View getCurrentView() {
  /frameworks/base/core/java/android/widget/
ExpandableListAdapter.java 20 import android.view.View;
21 import android.view.ViewGroup;
27 * {@link View}s for children and groups.
108 * Gets a View that displays the given group. This View is only for the
110 * {@link #getChildView(int, int, boolean, View, ViewGroup)}.
112 * @param groupPosition the position of the group for which the View is
115 * @param convertView the old view to reuse, if possible. You should check
116 * that this view is non-null and of an appropriate type befor
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/keyguard/
EmergencyCarrierArea.java 21 import android.view.MotionEvent;
22 import android.view.View;
47 public boolean onTouch(View v, MotionEvent event) {
48 if (mCarrierText.getVisibility() != View.VISIBLE) return false;
62 mCarrierText.setVisibility(visible ? View.VISIBLE : View.GONE);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/customize/
CustomizeTileView.java 18 import android.view.View;
34 mSecondLine.setVisibility(showAppLabel ? View.VISIBLE : View.GONE);
41 mSecondLine.setVisibility(mShowAppLabel ? View.VISIBLE : View.GONE);
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTest/java/android/databinding/
DataBindingMapperTest.java 18 import android.view.View;
22 View view = new View(getContext()); local
23 view.setTag("layout/unexpected");
25 ViewDataBinding binding = mapper.getDataBinder(null, view, 1);
29 View view = new View(getContext()) local
    [all...]

Completed in 613 milliseconds

1 2 3 4 5 6 7 8 91011>>