本文整理匯總了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();
}
示例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;
}
示例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;
}
}
}
示例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;
}
示例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;
}
示例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);
}
示例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;
}
}
}
}
}
示例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;
}
}
}
}
}