HomeSort by relevance Sort by last modified time
    Searched refs:BindingMethod (Results 26 - 37 of 37) sorted by null

12

  /frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
ViewStubBindingAdapter.java 19 import android.databinding.BindingMethod;
27 @BindingMethod(type = android.view.ViewStub.class, attribute = "android:layout", method = "setLayoutResource")
AbsListViewBindingAdapter.java 19 import android.databinding.BindingMethod;
25 @BindingMethod(type = AbsListView.class, attribute = "android:listSelector", method = "setSelector"),
26 @BindingMethod(type = AbsListView.class, attribute = "android:scrollingCache", method = "setScrollingCacheEnabled"),
27 @BindingMethod(type = AbsListView.class, attribute = "android:smoothScrollbar", method = "setSmoothScrollbarEnabled"),
28 @BindingMethod(type = AbsListView.class, attribute = "android:onMovedToScrapHeap", method = "setRecyclerListener"),
ImageViewBindingAdapter.java 19 import android.databinding.BindingMethod;
26 @BindingMethod(type = android.widget.ImageView.class, attribute = "android:tint", method = "setImageTintList"),
27 @BindingMethod(type = android.widget.ImageView.class, attribute = "android:tintMode", method = "setImageTintMode"),
AutoCompleteTextViewBindingAdapter.java 19 import android.databinding.BindingMethod;
28 @BindingMethod(type = AutoCompleteTextView.class, attribute = "android:completionThreshold", method = "setThreshold"),
29 @BindingMethod(type = AutoCompleteTextView.class, attribute = "android:popupBackground", method = "setDropDownBackgroundDrawable"),
30 @BindingMethod(type = AutoCompleteTextView.class, attribute = "android:onDismiss", method = "setOnDismissListener"),
31 @BindingMethod(type = AutoCompleteTextView.class, attribute = "android:onItemClick", method = "setOnItemClickListener"),
CardViewBindingAdapter.java 19 import android.databinding.BindingMethod;
24 @BindingMethod(type = android.support.v7.widget.CardView.class, attribute = "cardCornerRadius", method = "setRadius"),
25 @BindingMethod(type = android.support.v7.widget.CardView.class, attribute = "cardMaxElevation", method = "setMaxCardElevation"),
26 @BindingMethod(type = android.support.v7.widget.CardView.class, attribute = "cardPreventCornerOverlap", method = "setPreventCornerOverlap"),
27 @BindingMethod(type = android.support.v7.widget.CardView.class, attribute = "cardUseCompatPadding", method = "setUseCompatPadding"),
AdapterViewBindingAdapter.java 19 import android.databinding.BindingMethod;
26 @BindingMethod(type = AdapterView.class, attribute = "android:onItemClick", method = "setOnItemClickListener"),
27 @BindingMethod(type = AdapterView.class, attribute = "android:onItemLongClick", method = "setOnItemLongClickListener"),
SearchViewBindingAdapter.java 20 import android.databinding.BindingMethod;
32 @BindingMethod(type = SearchView.class, attribute = "android:onQueryTextFocusChange", method = "setOnQueryTextFocusChangeListener"),
33 @BindingMethod(type = SearchView.class, attribute = "android:onSearchClick", method = "setOnSearchClickListener"),
34 @BindingMethod(type = SearchView.class, attribute = "android:onClose", method = "setOnCloseListener"),
ViewGroupBindingAdapter.java 21 import android.databinding.BindingMethod;
31 @BindingMethod(type = android.view.ViewGroup.class, attribute = "android:alwaysDrawnWithCache", method = "setAlwaysDrawnWithCacheEnabled"),
32 @BindingMethod(type = android.view.ViewGroup.class, attribute = "android:animationCache", method = "setAnimationCacheEnabled"),
33 @BindingMethod(type = android.view.ViewGroup.class, attribute = "android:splitMotionEvents", method = "setMotionEventSplittingEnabled"),
TextViewBindingAdapter.java 19 import android.databinding.BindingMethod;
39 @BindingMethod(type = TextView.class, attribute = "android:autoLink", method = "setAutoLinkMask"),
40 @BindingMethod(type = TextView.class, attribute = "android:drawablePadding", method = "setCompoundDrawablePadding"),
41 @BindingMethod(type = TextView.class, attribute = "android:editorExtras", method = "setInputExtras"),
42 @BindingMethod(type = TextView.class, attribute = "android:inputType", method = "setRawInputType"),
43 @BindingMethod(type = TextView.class, attribute = "android:scrollHorizontally", method = "setHorizontallyScrolling"),
44 @BindingMethod(type = TextView.class, attribute = "android:textAllCaps", method = "setAllCaps"),
45 @BindingMethod(type = TextView.class, attribute = "android:textColorHighlight", method = "setHighlightColor"),
46 @BindingMethod(type = TextView.class, attribute = "android:textColorHint", method = "setHintTextColor"),
47 @BindingMethod(type = TextView.class, attribute = "android:textColorLink", method = "setLinkTextColor")
    [all...]
  /frameworks/data-binding/prebuilds/1.0-rc0/
databinding-baseLibrary.jar 
databinding-studio-bundle.jar 
  /frameworks/data-binding/compiler/src/main/java/android/databinding/annotationprocessor/
ProcessMethodAdapters.java 21 import android.databinding.BindingMethod;
195 for (BindingMethod bindingMethod : bindingMethods.value()) {
196 final String attribute = bindingMethod.attribute();
197 final String method = bindingMethod.method();
201 type = bindingMethod.type().getCanonicalName();

Completed in 84 milliseconds

12