当前位置: 首页>>代码示例>>Java>>正文


Java Orientation.TOP_BOTTOM属性代码示例

本文整理汇总了Java中android.graphics.drawable.GradientDrawable.Orientation.TOP_BOTTOM属性的典型用法代码示例。如果您正苦于以下问题:Java Orientation.TOP_BOTTOM属性的具体用法?Java Orientation.TOP_BOTTOM怎么用?Java Orientation.TOP_BOTTOM使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在android.graphics.drawable.GradientDrawable.Orientation的用法示例。


在下文中一共展示了Orientation.TOP_BOTTOM属性的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: setVerValSlider

/**
 * Create a linear gradient shader to show variations in value.
 */
private void setVerValSlider() {
	float[] hsv = new float[3];
	hsv[0] = mHSV[0];
	hsv[1] = mHSV[1];
	hsv[2] = 1;
	int col = Color.HSVToColor(hsv);

	int colors[] = new int[2];
	colors[0] = col;
	colors[1] = 0xFF000000;
	GradientDrawable gradDraw = new GradientDrawable(Orientation.TOP_BOTTOM, colors);
	gradDraw.setDither(true);
	gradDraw.setLevel(10000);
	gradDraw.setBounds(0, 0, mSliderThicknessPx, mPaletteDimPx);
	gradDraw.draw(mVerSliderCv);
}
 
开发者ID:weiwenqiang,项目名称:GitHub,代码行数:19,代码来源:UberColorPickerDialog.java

示例2: initResourcesIfNecessary

/**
 * Initializes resources
 */
private void initResourcesIfNecessary() {
	if (centerDrawable == null) {
		centerDrawable = getContext().getResources().getDrawable(wheelForeground);
	}

	if (topShadow == null) {
		topShadow = new GradientDrawable(Orientation.TOP_BOTTOM, SHADOWS_COLORS);
	}

	if (bottomShadow == null) {
		bottomShadow = new GradientDrawable(Orientation.BOTTOM_TOP, SHADOWS_COLORS);
	}

	setBackgroundResource(wheelBackground);
}
 
开发者ID:PengSen,项目名称:work_sen,代码行数:18,代码来源:WheelView.java

示例3: SearchView

public SearchView(Context context, StringBuilder queryText) {
    super(context);

    mContext = context;
    mQueryText = queryText;

    mPaint = new Paint();
    mPaint.setAntiAlias(true);

    final SurfaceHolder holder = getHolder();
    holder.setFormat(PixelFormat.TRANSLUCENT);
    holder.addCallback(mSurfaceCallback);

    final Resources res = context.getResources();

    int mExtremeRadius = 128;

    // Gradient colors.
    final int gradientInnerColor = res.getColor(R.color.search_overlay);
    final int gradientOuterColor = res.getColor(R.color.search_overlay);
    final int[] colors = new int[] {gradientInnerColor, gradientOuterColor};
    mGradientBackground =
            new GradientDrawable(Orientation.TOP_BOTTOM, colors);
    mGradientBackground.setGradientType(GradientDrawable.LINEAR_GRADIENT);
}
 
开发者ID:google,项目名称:brailleback,代码行数:25,代码来源:SearchView.java

示例4: initResourcesIfNecessary

/**
 * Initializes resources
 */
private void initResourcesIfNecessary() {
    if (centerDrawable == null) {
        centerDrawable = getContext().getResources().getDrawable(wheelForeground);
    }

    if (topShadow == null) {
        topShadow = new GradientDrawable(Orientation.TOP_BOTTOM, SHADOWS_COLORS);
    }

    if (bottomShadow == null) {
        bottomShadow = new GradientDrawable(Orientation.BOTTOM_TOP, SHADOWS_COLORS);
    }

    setBackgroundResource(wheelBackground);
}
 
开发者ID:absentm,项目名称:myapplication,代码行数:18,代码来源:WheelView.java

示例5: initResourcesIfNecessary

/**
 * Initializes resources
 */
private void initResourcesIfNecessary() {
	if (centerDrawable == null) {
		centerDrawable = getContext().getResources().getDrawable(
				R.drawable.two_line);
	}

	if (topShadow == null) {
		topShadow = new GradientDrawable(Orientation.TOP_BOTTOM,
				SHADOWS_COLORS);
	}

	if (bottomShadow == null) {
		bottomShadow = new GradientDrawable(Orientation.BOTTOM_TOP,
				SHADOWS_COLORS);
	}

	setBackgroundResource(R.drawable.white);
}
 
开发者ID:BigAppOS,项目名称:BigApp_Discuz_Android,代码行数:21,代码来源:WheelView.java

示例6: initResourcesIfNecessary

/**
 * Initializes resources
 */
private void initResourcesIfNecessary() {
	if (centerDrawable == null) {
		centerDrawable = getContext().getResources().getDrawable(
				R.drawable.wheel_val);
	}

	if (topShadow == null) {
		topShadow = new GradientDrawable(Orientation.TOP_BOTTOM,
				SHADOWS_COLORS);
	}

	if (bottomShadow == null) {
		bottomShadow = new GradientDrawable(Orientation.BOTTOM_TOP,
				SHADOWS_COLORS);
	}

	setBackgroundResource(R.drawable.wheel_bg);
}
 
开发者ID:yndongyong,项目名称:fast-dev-library,代码行数:21,代码来源:WheelView.java

示例7: setVerValSlider

/**
 * Create a linear gradient shader to show variations in value.
 */
private void setVerValSlider() {
	float[] hsv = new float[3];
	hsv[0] = mHSV[0];
	hsv[1] = mHSV[1];
	hsv[2] = 1;
	int col = Color.HSVToColor(hsv);

	int colors[] = new int[2];
	colors[0] = col;
	colors[1] = 0xFF000000;
	GradientDrawable gradDraw = new GradientDrawable(Orientation.TOP_BOTTOM, colors);
	gradDraw.setDither(true);
	gradDraw.setLevel(10000);
	gradDraw.setBounds(0, 0, SLIDER_THICKNESS, PALETTE_DIM);
	gradDraw.draw(mVerSliderCv);
}
 
开发者ID:dragonlinux,项目名称:connectbot,代码行数:19,代码来源:UberColorPickerDialog.java

示例8: init

protected void init(Context context, AttributeSet attrs) {
	Resources res = getResources();
	this.setCenterDrawable(res.getDrawable(R.drawable.wheel_val_light));
	this.setBackgroundResource(R.drawable.wheel_bg_light);

	GradientDrawable topShadow = new GradientDrawable(Orientation.TOP_BOTTOM, new int[] { 0x00000000, 0x00000000 });
	this.setTopShadowDrawable(topShadow);

	GradientDrawable bottomShadow = new GradientDrawable(Orientation.BOTTOM_TOP,
			new int[] { 0x00000000, 0x00000000 });
	this.setBottomShadowDrawable(bottomShadow);

	mTextColorValue = 0xFF000000;
	mTextColorItems = 0xFF888888;

	TEXT_SIZE = (int) AppUtil.sp2px(getContext(), 18);
	setFakeBoldText(false);
	setCyclic(true);
}
 
开发者ID:wavinsun,项目名称:MUtils,代码行数:19,代码来源:WheelViewer.java

示例9: SearchView

public SearchView(Context context, StringBuilder queryText, SearchTextFormatter
        textFormatter) {
    super(context);

    mQueryText = queryText;
    mTextFormatter = textFormatter;

    final SurfaceHolder holder = getHolder();
    holder.setFormat(PixelFormat.TRANSLUCENT);
    holder.addCallback(mSurfaceCallback);

    // Gradient colors.
    final int[] colors = new int[] {GRADIENT_INNER_COLOR, GRADIENT_OUTER_COLOR};
    mGradientBackground = new GradientDrawable(Orientation.TOP_BOTTOM, colors);
    mGradientBackground.setGradientType(GradientDrawable.LINEAR_GRADIENT);
}
 
开发者ID:google,项目名称:talkback,代码行数:16,代码来源:NodeSearch.java

示例10: initialize

/**
     * Initialize.
     * 
     * @param context
     */
    private void initialize(Context context) {
        this.setVerticalScrollBarEnabled(false);
        this.setSlotInCenter(true);
        this.setOrientation(VERTICAL);
        this.setGravity(Gravity.CENTER_HORIZONTAL);
        this.setUnselectedAlpha(1.0f);

        // This lead the onDraw() will be called.
        this.setWillNotDraw(false);

        // The selector rectangle drawable.
        this.mSelectorDrawable = getContext().getResources().getDrawable(R.drawable.wheel_val);
        this.mTopShadow = new GradientDrawable(Orientation.TOP_BOTTOM, SHADOWS_COLORS);
        this.mBottomShadow = new GradientDrawable(Orientation.BOTTOM_TOP, SHADOWS_COLORS);

        // The default background.
//        this.setBackgroundResource(R.drawable.wheel_bg);

        // Disable the sound effect default.
        this.setSoundEffectsEnabled(true);
    }
 
开发者ID:liangchenhe55,项目名称:konkeWatch,代码行数:26,代码来源:WheelView.java

示例11: initialize

/**
 * Initialize.
 *
 * @param context
 */
private void initialize(Context context) {
    this.setVerticalScrollBarEnabled(false);
    this.setSlotInCenter(true);
    this.setOrientation(TosGallery.VERTICAL);
    this.setGravity(Gravity.CENTER_HORIZONTAL);
    this.setUnselectedAlpha(1.0f);

    // This lead the onDraw() will be called.
    this.setWillNotDraw(false);

    // The selector rectangle drawable.
    this.mSelectorDrawable = getContext().getResources().getDrawable(R.drawable.wheel_val);
    this.mTopShadow = new GradientDrawable(Orientation.TOP_BOTTOM, SHADOWS_COLORS);
    this.mBottomShadow = new GradientDrawable(Orientation.BOTTOM_TOP, SHADOWS_COLORS);

    // The default background.
    this.setBackgroundResource(R.drawable.wheel_bg);

    // Disable the sound effect default.
    this.setSoundEffectsEnabled(false);
}
 
开发者ID:rantianhua,项目名称:MoneyRecord,代码行数:26,代码来源:WheelView.java

示例12: initResourcesIfNecessary

/**
 * Initializes resources
 */
private void initResourcesIfNecessary() {

    if (topShadow == null) {
        topShadow = new GradientDrawable(Orientation.TOP_BOTTOM,
                SHADOWS_COLORS);
    }

    if (topBlurShadow == null) {
        topBlurShadow = new GradientDrawable(Orientation.TOP_BOTTOM,
                BLUR_SHADOWS_COLORS);
    }

    if (bottomBlurShadow == null) {
        bottomBlurShadow = new GradientDrawable(Orientation.BOTTOM_TOP,
                BLUR_SHADOWS_COLORS);
    }

    if (bottomShadow == null) {
        bottomShadow = new GradientDrawable(Orientation.BOTTOM_TOP,
                SHADOWS_COLORS);
    }

}
 
开发者ID:Kuloud,项目名称:Unity,代码行数:26,代码来源:WheelView.java

示例13: initResourcesIfNecessary

/**
 * Initializes resources
 */
private void initResourcesIfNecessary() {
	if (centerDrawable == null) {
		centerDrawable = getContext().getResources().getDrawable(R.drawable.wheel_val);
	}

	if (topShadow == null) {
		topShadow = new GradientDrawable(Orientation.TOP_BOTTOM, SHADOWS_COLORS);
	}

	if (bottomShadow == null) {
		bottomShadow = new GradientDrawable(Orientation.BOTTOM_TOP, SHADOWS_COLORS);
	}

	setBackgroundResource(R.drawable.wheel_bg);
}
 
开发者ID:bither,项目名称:bither-android,代码行数:18,代码来源:WheelView.java

示例14: ColorButton

public ColorButton(Context context, AttributeSet attrs, int defStyle)
{
    super(context, attrs, defStyle);

    TypedArray a = context.obtainStyledAttributes(attrs,
            R.styleable.ColorButton, defStyle, 0);
    _color = a.getColor(R.styleable.ColorButton_color, Color.RED);
    a.recycle();

    _highlightDrawable = new GradientDrawable(Orientation.TOP_BOTTOM,
            new int[]
            {
                Color.WHITE, Color.TRANSPARENT, Color.TRANSPARENT
            });
    _highlightDrawable.setShape(GradientDrawable.OVAL);
    _colorDrawable = new GradientDrawable();
    _colorDrawable.setColor(_color);
    _colorDrawable.setShape(GradientDrawable.OVAL);
}
 
开发者ID:androidsoft-org,项目名称:androidsoft-coloring,代码行数:19,代码来源:ColorButton.java

示例15: ColorButton

public ColorButton(Context context, AttributeSet attrs, int defStyle)
{
    super(context, attrs, defStyle);

    TypedArray a = context.obtainStyledAttributes(attrs,
            R.styleable.ColorButton, defStyle, 0);
    _color = a.getColor(R.styleable.ColorButton_color, Color.RED);

    _highlightDrawable = new GradientDrawable(Orientation.TOP_BOTTOM,
            new int[]
            {
                Color.WHITE, Color.TRANSPARENT, Color.TRANSPARENT
            });
    _highlightDrawable.setShape(GradientDrawable.OVAL);
    _colorDrawable = new GradientDrawable();
    _colorDrawable.setColor(_color);
    _colorDrawable.setShape(GradientDrawable.OVAL);
}
 
开发者ID:lohith,项目名称:androidsoft-kids-coloring,代码行数:18,代码来源:ColorButton.java


注:本文中的android.graphics.drawable.GradientDrawable.Orientation.TOP_BOTTOM属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。