當前位置: 首頁>>代碼示例>>Java>>正文


Java AttributeSet.getAttributeCount方法代碼示例

本文整理匯總了Java中android.util.AttributeSet.getAttributeCount方法的典型用法代碼示例。如果您正苦於以下問題:Java AttributeSet.getAttributeCount方法的具體用法?Java AttributeSet.getAttributeCount怎麽用?Java AttributeSet.getAttributeCount使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在android.util.AttributeSet的用法示例。


在下文中一共展示了AttributeSet.getAttributeCount方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: CameraBridgeViewBase

import android.util.AttributeSet; //導入方法依賴的package包/類
public CameraBridgeViewBase(Context context, AttributeSet attrs) {
    super(context, attrs);

    int count = attrs.getAttributeCount();
    Log.d(TAG, "Attr count: " + Integer.valueOf(count));

    TypedArray styledAttrs = getContext().obtainStyledAttributes(attrs, R.styleable.CameraBridgeViewBase);
    if (styledAttrs.getBoolean(R.styleable.CameraBridgeViewBase_show_fps, false))
        enableFpsMeter();

    mCameraIndex = styledAttrs.getInt(R.styleable.CameraBridgeViewBase_camera_id, -1);

    getHolder().addCallback(this);
    mMaxWidth = MAX_UNSPECIFIED;
    mMaxHeight = MAX_UNSPECIFIED;
    styledAttrs.recycle();
}
 
開發者ID:beast,項目名稱:react-native-scan-doc,代碼行數:18,代碼來源:CameraBridgeViewBase.java

示例2: extractStateSet

import android.util.AttributeSet; //導入方法依賴的package包/類
/**
 * Extracts state_ attributes from an attribute set.
 *
 * @param attrs The attribute set.
 * @return An array of state_ attributes.
 */
protected int[] extractStateSet(AttributeSet attrs) {
    int j = 0;
    final int numAttrs = attrs.getAttributeCount();
    int[] states = new int[numAttrs];
    for (int i = 0; i < numAttrs; i++) {
        final int stateResId = attrs.getAttributeNameResource(i);
        if (stateResId == 0) {
            break;
        } else if (stateResId == android.R.attr.drawable
                || stateResId == android.R.attr.id
                || stateResId == R.attr.drawableTint
                || stateResId == R.attr.drawableTintMode) {
            // Ignore attributes from StateListDrawableItem and
            // AnimatedStateListDrawableItem.
            continue;
        } else {
            states[j++] = attrs.getAttributeBooleanValue(i, false)
                    ? stateResId : -stateResId;
        }
    }
    states = StateSet.trimStateSet(states, j);
    return states;
}
 
開發者ID:Pingsh,項目名稱:Mix,代碼行數:30,代碼來源:DrawableUtils.java

示例3: NS_MOBILE_EXTRA

import android.util.AttributeSet; //導入方法依賴的package包/類
public NS_MOBILE_EXTRA(Context context, AttributeSet attrs) {
    super(context, attrs);
    setDialogLayoutResource(R.layout.preference_seekbar);

    for (int i = 0; i < attrs.getAttributeCount(); i++) {
        String attr = attrs.getAttributeName(i);
        if (attr.equalsIgnoreCase("pref_kind")) {
            prefKind = attrs.getAttributeValue(i);
            break;
        }
    }
}
 
開發者ID:stytooldex,項目名稱:stynico,代碼行數:13,代碼來源:NS_MOBILE_EXTRA.java

示例4: getSrcId

import android.util.AttributeSet; //導入方法依賴的package包/類
private static int getSrcId(AttributeSet attrs) {
    int count = attrs.getAttributeCount();
    for (int i = 0; i < count; i++) {
        if (attrs.getAttributeNameResource(i) == android.R.attr.src) {
            String str = attrs.getAttributeValue(i);
            return Integer.valueOf(str.substring(1, str.length()));
        }
    }
    return -1;
}
 
開發者ID:vitaviva,項目名稱:MultipleTheme,代碼行數:11,代碼來源:ThemedImageView.java

示例5: getAttributeValue

import android.util.AttributeSet; //導入方法依賴的package包/類
public static int getAttributeValue(AttributeSet attr, int paramInt) {
    int value = -1;
    int count = attr.getAttributeCount();
    for(int i = 0; i <count;i++) {
        if(attr.getAttributeNameResource(i) == paramInt) {
            String str = attr.getAttributeValue(i);
            if(null != str && str.startsWith("?")) {
                value = Integer.valueOf(str.substring(1,str.length())).intValue();
                return value;
            }
        }
    }
    return value;
}
 
開發者ID:vitaviva,項目名稱:MultipleTheme,代碼行數:15,代碼來源:ViewAttributeUtil.java

示例6: ConnectionStrengthView

import android.util.AttributeSet; //導入方法依賴的package包/類
/** Creates an HSI view by parsing attributes. */
public ConnectionStrengthView(Context context, AttributeSet attrs) {
  super(context, attrs);

  int backgroundColor = Color.BLACK;
  for (int i = 0; i < attrs.getAttributeCount(); i++) {
    if ("backgroundColor".equals(attrs.getAttributeName(i))) {
      backgroundColor = Color.parseColor(attrs.getAttributeValue(i));
    }
  }
  backgroundPaint.setColor(backgroundColor);
  backgroundPaint.setStyle(Paint.Style.FILL_AND_STROKE);

  setWillNotDraw(false);
}
 
開發者ID:padster,項目名稱:Muse-EEG-Toolkit,代碼行數:16,代碼來源:ConnectionStrengthView.java

示例7: CameraPreviewUVC

import android.util.AttributeSet; //導入方法依賴的package包/類
public CameraPreviewUVC(Context context, AttributeSet attrs) {
      super(context, attrs);
      setFocusable(true);
      this.holder = getHolder();
      this.holder.addCallback(this);
mUsbMonitor = new USBMonitor(context, mOnDeviceConnectListener);
refreshDevice();

      int n = attrs.getAttributeCount();
if (n <= 0) {
	mCameraId = 0;
} else {
	for (int i = 0; i < n; i++) {
		String name = attrs.getAttributeName(i);
		String value = attrs.getAttributeValue(i);
		if (name == null || value == null) {
			continue;
		}
		if (name.equals("camType") && value.equals("front")) { 
			mIsFront  = true;
		}
		// camera id
		if (name.equals("camId")) { 
			mCameraId = Integer.parseInt(value);
		}
		
		if (mCameraId < 0) {
			mCameraId = 0; 
		}
		// width 
		if (name.equals("width")) {
			mWidth = Integer.parseInt(value);
		}
		// height 
		if (name.equals("height")) {
			mHeight = Integer.parseInt(value);
		}
		if (mWidth <= 0 || mHeight <= 0) {
			Log.d(TAG, "Wrong preview size "+mWidth+"x"+mHeight);
		}
		// scaleType
		if (name.equals("scaleType")) {
			if (value.equals("center")) {
				mScaleType = SCALE_TYPE_CENTER;
			} else if (value.equals("centerCrop")) {
				mScaleType = SCALE_TYPE_CENTER_CROP;
			} else {
				mScaleType = SCALE_TYPE_FIT;
			}
		}
	}
}
  }
 
開發者ID:wjchen,項目名稱:AndroidUvcCameras,代碼行數:54,代碼來源:CameraPreviewUVC.java

示例8: CameraPreviewV4L

import android.util.AttributeSet; //導入方法依賴的package包/類
public CameraPreviewV4L(Context context, AttributeSet attrs) {
      super(context, attrs);
      setFocusable(true);
      this.holder = getHolder();
      this.holder.addCallback(this);
      int n = attrs.getAttributeCount();
if (n <= 0) {
	mCameraId = 0;
} else {
	for (int i = 0; i < n; i++) {
		String name = attrs.getAttributeName(i);
		String value = attrs.getAttributeValue(i);
		if (name == null || value == null) {
			continue;
		}
		if (name.equals("camType") && value.equals("front")) {
			mIsFront = true;
		}
		// camera id
		if (name.equals("camId")) { 
			mCameraId = Integer.parseInt(value);
		}
		
		if (mCameraId < 0) {
			mCameraId = 0; 
		}
		// width 
		if (name.equals("width")) {
			mWidth = Integer.parseInt(value);
		}
		// height 
		if (name.equals("height")) {
			mHeight = Integer.parseInt(value);
		}
		if (mWidth <= 0 || mHeight <= 0) {
			Log.d(TAG, "Wrong preview size "+mWidth+"x"+mHeight);
		}
		// scaleType
		if (name.equals("scaleType")) {
			if (value.equals("center")) {
				mScaleType = SCALE_TYPE_CENTER;
			} else if (value.equals("centerCrop")) {
				mScaleType = SCALE_TYPE_CENTER_CROP;
			} else {
				mScaleType = SCALE_TYPE_FIT;
			}
		}
	}
}
  }
 
開發者ID:wjchen,項目名稱:AndroidUvcCameras,代碼行數:51,代碼來源:CameraPreviewV4L.java


注:本文中的android.util.AttributeSet.getAttributeCount方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。