Searched refs:view (Results 126 - 150 of 4387) sorted by relevance

1234567891011>>

/frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
H A DTabHostBindingAdapter.java27 public static int getCurrentTab(TabHost view) { argument
28 return view.getCurrentTab();
32 public static String getCurrentTabTag(TabHost view) { argument
33 return view.getCurrentTabTag();
37 public static void setCurrentTab(TabHost view, int tab) { argument
38 if (view.getCurrentTab() != tab) {
39 view.setCurrentTab(tab);
44 public static void setCurrentTabTag(TabHost view, String tabTag) { argument
45 if (view.getCurrentTabTag() != tabTag) {
46 view
52 setListeners(TabHost view, final OnTabChangeListener listener, final InverseBindingListener attrChange) argument
[all...]
H A DViewBindingAdapter.java26 import android.view.View;
27 import android.view.View.OnAttachStateChangeListener;
64 public static void setPadding(View view, float paddingFloat) { argument
66 view.setPadding(padding, padding, padding, padding);
70 public static void setPaddingBottom(View view, float paddingFloat) { argument
72 view.setPadding(view.getPaddingLeft(), view.getPaddingTop(), view.getPaddingRight(),
77 public static void setPaddingEnd(View view, floa argument
89 setPaddingLeft(View view, float paddingFloat) argument
96 setPaddingRight(View view, float paddingFloat) argument
103 setPaddingStart(View view, float paddingFloat) argument
115 setPaddingTop(View view, float paddingFloat) argument
122 setRequiresFadingEdge(View view, int value) argument
130 setClickListener(View view, View.OnClickListener clickListener, boolean clickable) argument
137 setOnClick(View view, View.OnClickListener clickListener, boolean clickable) argument
144 setOnLongClickListener(View view, View.OnLongClickListener clickListener, boolean clickable) argument
151 setOnLongClick(View view, View.OnLongClickListener clickListener, boolean clickable) argument
159 setOnAttachStateChangeListener(View view, final OnViewDetachedFromWindow detach, final OnViewAttachedToWindow attach) argument
194 setOnLayoutChangeListener(View view, View.OnLayoutChangeListener oldValue, View.OnLayoutChangeListener newValue) argument
208 setBackground(View view, Drawable drawable) argument
[all...]
H A DCalendarViewBindingAdapter.java30 public static void setDate(CalendarView view, long date) { argument
31 if (view.getDate() != date) {
32 view.setDate(date);
38 public static void setListeners(CalendarView view, final OnDateChangeListener onDayChange, argument
41 view.setOnDateChangeListener(onDayChange);
43 view.setOnDateChangeListener(new OnDateChangeListener() {
45 public void onSelectedDayChange(CalendarView view, int year, int month,
48 onDayChange.onSelectedDayChange(view, year, month, dayOfMonth);
/frameworks/layoutlib/bridge/src/android/view/
H A DAttachInfo_Accessor.java17 package android.view;
21 import android.view.View.AttachInfo;
30 public static void setAttachInfo(View view) { argument
31 Context context = view.getContext();
42 view.dispatchAttachedToWindow(info, 0);
45 public static void dispatchOnPreDraw(View view) { argument
46 view.mAttachInfo.mTreeObserver.dispatchOnPreDraw();
49 public static void detachFromWindow(View view) { argument
50 if (view != null) {
51 view
55 getRootView(View view) argument
[all...]
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/
H A DUtil.java5 import android.support.v4.view.accessibility.AccessibilityEventCompat;
6 import android.support.v4.view.accessibility.AccessibilityRecordCompat;
7 import android.view.View;
8 import android.view.accessibility.AccessibilityEvent;
9 import android.view.accessibility.AccessibilityManager;
22 * {@link android.view.View#announceForAccessibility}
23 * @param view The view that triggered the announcement
29 final View view, AccessibilityManager accessibilityManager,
33 view
28 announceForAccessibility( final View view, AccessibilityManager accessibilityManager, final CharSequence text) argument
[all...]
/frameworks/base/core/java/android/app/
H A DIInputForwarder.aidl19 import android.view.InputEvent;
/frameworks/base/core/java/android/view/
H A DIPinnedStackController.aidl17 package android.view;
H A DIWindowFocusObserver.aidl16 package android.view;
H A DWindowManager.aidl1 /* //device/java/android/android/view/WindowManager.aidl
18 package android.view;
/frameworks/base/core/java/android/view/accessibility/
H A DIAccessibilityManagerClient.aidl17 package android.view.accessibility;
H A DAccessibilityEventSource.java17 package android.view.accessibility;
/frameworks/base/core/java/android/view/textclassifier/
H A DTextClassification.aidl17 package android.view.textclassifier;
H A DTextLinks.aidl17 package android.view.textclassifier;
H A DTextSelection.aidl17 package android.view.textclassifier;
/frameworks/base/core/java/android/widget/
H A DHeterogeneousExpandableList.java19 import android.view.View;
20 import android.view.ViewGroup;
24 * {@link ExpandableListAdapter} take advantage of the {@link Adapter} view type
27 * An {@link ExpandableListAdapter} declares it has one view type for its group items
28 * and one view type for its child items. Although adapted for most {@link ExpandableListView}s,
H A DSpinnerAdapter.java19 import android.view.View;
20 import android.view.ViewGroup;
31 * Gets a {@link android.view.View} that displays in the drop down popup
34 * @param position index of the item whose view we want.
35 * @param convertView the old view to reuse, if possible. Note: You should
36 * check that this view is non-null and of an appropriate type before
37 * using. If it is not possible to convert this view to display the
38 * correct data, this method can create a new view.
39 * @param parent the parent that this view will eventually be attached to
40 * @return a {@link android.view
[all...]
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/core/lifecycle/events/
H A DOnCreateOptionsMenu.java19 import android.view.Menu;
20 import android.view.MenuInflater;
H A DOnPrepareOptionsMenu.java19 import android.view.Menu;
20 import android.view.MenuInflater;
/frameworks/base/services/core/java/com/android/server/wm/
H A DSurfaceBuilderFactory.java19 import android.view.SurfaceSession;
20 import android.view.SurfaceControl;
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
H A DMultiAdapterSetterObj.java16 import android.view.View;
22 public void onClick(View view) {
/frameworks/support/compat/src/main/java/androidx/core/internal/view/
H A DSupportSubMenu.java17 package androidx.core.internal.view;
29 * @see android.view.SubMenu
33 public interface SupportSubMenu extends SupportMenu, android.view.SubMenu {
/frameworks/support/v7/appcompat/src/androidTest/java/androidx/appcompat/app/
H A DLayoutInflaterFactoryTestActivity.java19 import android.view.View;
25 public void declarativeOnClick(View view) { argument
/frameworks/layoutlib/create/tests/mock_data/mock_android/view/
H A DView.java17 package mock_android.view;
/frameworks/layoutlib/create/tests/mock_data/mock_android/widget/
H A DTableLayout.java19 import mock_android.view.ViewGroup;
/frameworks/support/compat/src/main/java/androidx/core/view/
H A DScrollingView.java17 package androidx.core.view;
31 * <p>The default range is the drawing width of this view.</p>
51 * <p>The default offset is the scroll offset of this view.</p>
70 * <p>The default extent is the drawing width of this view.</p>
89 * <p>The default range is the drawing height of this view.</p>
106 * <p>The default offset is the scroll offset of this view.</p>
125 * <p>The default extent is the drawing height of this view.</p>

Completed in 335 milliseconds

1234567891011>>