HomeSort by relevance Sort by last modified time
    Searched refs:attributeSet (Results 1 - 25 of 35) sorted by null

1 2

  /cts/tests/tests/mediastress/src/android/mediastress/cts/
SurfaceTextureGLSurfaceView.java 24 import android.util.AttributeSet;
36 public SurfaceTextureGLSurfaceView(Context context, AttributeSet attributeSet,
38 super(context, attributeSet);
  /development/samples/training/threadsample/src/com/example/android/threadsample/
PhotoView.java 25 import android.util.AttributeSet;
78 * @param attributeSet The entire set of attributes for the View
80 public PhotoView(Context context, AttributeSet attributeSet) {
81 super(context, attributeSet);
84 getAttributes(attributeSet);
90 * @param attributeSet The entire set of attributes for the View
93 public PhotoView(Context context, AttributeSet attributeSet, int defaultStyle) {
94 super(context, attributeSet, defaultStyle)
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowFrameLayout.java 4 import android.util.AttributeSet;
19 public void __constructor__(Context context, AttributeSet attributeSet, int defStyle) {
21 super.__constructor__(context, attributeSet, defStyle);
ShadowRatingBar.java 21 setIsIndicator(attributeSet.getAttributeBooleanValue("android", "isIndicator", false));
22 final int numStars = attributeSet.getAttributeIntValue("android", "numStars", mNumStars);
23 final float rating = attributeSet.getAttributeFloatValue("android", "rating", -1);
24 final float stepSize = attributeSet.getAttributeFloatValue("android", "stepSize", -1);
ShadowPreference.java 6 import android.util.AttributeSet;
18 protected AttributeSet attrs;
39 public void __constructor__(Context context, AttributeSet attributeSet) {
40 __constructor__(context, attributeSet, 0);
43 public void __constructor__(Context context, AttributeSet attributeSet, int defStyle) {
45 this.attrs = attributeSet;
48 if (attributeSet != null) {
49 key = attributeSet.getAttributeValue("android", "key")
    [all...]
ShadowView.java 12 import android.util.AttributeSet;
76 protected AttributeSet attributeSet;
93 public void __constructor__(Context context, AttributeSet attributeSet) {
94 __constructor__(context, attributeSet, 0);
97 public void __constructor__(Context context, AttributeSet attributeSet, int defStyle) {
99 this.attributeSet = attributeSet;
    [all...]
ShadowTextView.java 390 String text = attributeSet.getAttributeValue("android", "text");
393 int textResId = attributeSet.getAttributeResourceValue("android", "text", 0);
401 String colorValue = attributeSet.getAttributeValue("android", "textColor");
404 int colorResId = attributeSet.getAttributeResourceValue("android", "textColor", 0);
414 String hint = attributeSet.getAttributeValue("android", "hint");
417 int textResId = attributeSet.getAttributeResourceValue("android", "hint", 0);
426 String colorValue = attributeSet.getAttributeValue("android", "hintColor");
429 int colorResId = attributeSet.getAttributeResourceValue("android", "hintColor", 0);
440 attributeSet.getAttributeResourceValue("android", "drawableLeft", 0),
441 attributeSet.getAttributeResourceValue("android", "drawableTop", 0)
    [all...]
ShadowCompoundButton.java 21 setChecked(this.attributeSet.getAttributeBooleanValue("android", "checked", false));
ShadowViewStub.java 29 String inflatedId = attributeSet.getAttributeValue("android", "inflatedId");
34 String layoutResId = attributeSet.getAttributeValue("android", "layout");
ShadowEditText.java 27 maxLength = attributeSet.getAttributeIntValue("android", "maxLength", Integer.MAX_VALUE);
ShadowProgressBar.java 20 final int max = attributeSet.getAttributeIntValue("android", "max", this.max);
ShadowImageView.java 156 String source = attributeSet.getAttributeValue("android", "src");
159 setImageResource(attributeSet.getAttributeResourceValue(
ShadowWebView.java 4 import android.util.AttributeSet;
39 public void __constructor__(Context context, AttributeSet attributeSet) {
40 super.__constructor__(context, attributeSet);
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ShadowEditTextTest.java 21 TestAttributeSet attributeSet = new TestAttributeSet(hash);
22 EditText editText = new EditText(Robolectric.application, attributeSet);
  /packages/apps/Camera2/src/com/android/camera/widget/
LocationDialogLayout.java 21 import android.util.AttributeSet;
41 public LocationDialogLayout(Context context, AttributeSet attributeSet) {
42 super(context, attributeSet);
  /development/samples/ApiDemos/src/com/example/android/apis/accessibility/
TaskListView.java 22 import android.util.AttributeSet;
39 public TaskListView(Context context, AttributeSet attributeSet) {
40 super(context, attributeSet);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
ViewLoader.java 8 import android.util.AttributeSet;
208 TestAttributeSet attributeSet = new TestAttributeSet(attributes, resourceExtractor, attrResourceLoader, View.class, isSystem);
210 attributeSet.validateStrictI18n();
221 String tag = attributeSet.getAttributeValue("android", "tag");
222 int id = attributeSet.getAttributeResourceValue("android", "id", 0);
245 TestAttributeSet attributeSet = new TestAttributeSet(attributes, resourceExtractor, attrResourceLoader, clazz, isSystem);
247 attributeSet.validateStrictI18n();
249 return ((Constructor<? extends View>) clazz.getConstructor(Context.class, AttributeSet.class)).newInstance(context, attributeSet);
PreferenceLoader.java 23 import android.util.AttributeSet;
128 TestAttributeSet attributeSet = new TestAttributeSet(attributes);
130 attributeSet.validateStrictI18n();
132 return ((Constructor<? extends Preference>) clazz.getConstructor(Context.class, AttributeSet.class)).newInstance(context, attributeSet);
  /cts/tests/tests/widget/src/android/widget/cts/
AutoCompleteTextViewTest.java 34 import android.util.AttributeSet;
124 AttributeSet attributeSet = Xml.asAttributeSet(parser);
125 new AutoCompleteTextView(mActivity, attributeSet);
130 attributeSet = Xml.asAttributeSet(parser);
131 new AutoCompleteTextView(mActivity, attributeSet, 0);
137 new AutoCompleteTextView(null, attributeSet, 0);
143 new AutoCompleteTextView(mActivity, attributeSet, -1);
144 // Test null AttributeSet
723 public MockAutoCompleteTextView(Context context, AttributeSet attrs)
    [all...]
  /development/ndk/platforms/android-14/samples/native-media/src/com/example/nativemedia/
MyGLSurfaceView.java 35 import android.util.AttributeSet;
45 public MyGLSurfaceView(Context context, AttributeSet attributeSet) {
46 super(context, attributeSet);
  /external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
tinyxml.h     [all...]
  /external/sfntly/cpp/src/test/tinyxml/
tinyxml.h     [all...]
  /frameworks/base/core/java/android/animation/
AnimatorInflater.java 25 import android.util.AttributeSet;
153 XmlPullParser parser, AttributeSet attributeSet)
173 int attrName = attributeSet.getAttributeNameResource(i);
176 attributeSet.getAttributeResourceValue(i, 0));
179 attributeSet.getAttributeBooleanValue(i, false) ?
509 AttributeSet attrs, AnimatorSet parent, int sequenceOrdering, float pixelSize)
573 private static ObjectAnimator loadObjectAnimator(Resources res, Theme theme, AttributeSet attrs,
592 AttributeSet attrs, ValueAnimator anim, float pathErrorScale)
  /frameworks/wilhelm/tests/native-media/src/com/example/nativemedia/
MyGLSurfaceView.java 44 import android.util.AttributeSet;
54 public MyGLSurfaceView(Context context, AttributeSet attributeSet) {
55 super(context, attributeSet);
  /external/tinyxml/
tinyxml.h     [all...]

Completed in 1431 milliseconds

1 2