Example usage for android.graphics Color argb

List of usage examples for android.graphics Color argb

Introduction

In this page you can find the example usage for android.graphics Color argb.

Prototype

@ColorInt
public static int argb(float alpha, float red, float green, float blue) 

Source Link

Document

Return a color-int from alpha, red, green, blue float components in the range \([0..1]\).

Usage

From source file:oak.animatedsvgview.AnimatedSvgView.java

@SuppressWarnings("NewApi")
private void init(Context context, AttributeSet attrs) {
    mFillPaint = new Paint();
    mFillPaint.setAntiAlias(true);/*from  w w w  . jav a 2s . c om*/
    mFillPaint.setStyle(Paint.Style.FILL);

    mMarkerLength = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, MARKER_LENGTH_DIP,
            getResources().getDisplayMetrics());

    mTraceColors = new int[1];
    mTraceColors[0] = Color.BLACK;
    mTraceResidueColors = new int[1];
    mTraceResidueColors[0] = Color.argb(50, 0, 0, 0);

    if (attrs != null) {
        TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.AnimatedSvgView);

        mViewportWidth = a.getInt(R.styleable.AnimatedSvgView_oakSvgImageSizeX, 433);
        mRatioSizingInfo.aspectRatioWidth = a.getInt(R.styleable.AnimatedSvgView_oakSvgImageSizeX, 433);
        mViewportHeight = a.getInt(R.styleable.AnimatedSvgView_oakSvgImageSizeY, 433);
        mRatioSizingInfo.aspectRatioHeight = a.getInt(R.styleable.AnimatedSvgView_oakSvgImageSizeY, 433);

        mTraceTime = a.getInt(R.styleable.AnimatedSvgView_oakSvgTraceTime, 2000);
        mTraceTimePerGlyph = a.getInt(R.styleable.AnimatedSvgView_oakSvgTraceTimePerGlyph, 1000);
        mFillStart = a.getInt(R.styleable.AnimatedSvgView_oakSvgFillStart, 1200);
        mFillTime = a.getInt(R.styleable.AnimatedSvgView_oakSvgFillTime, 1000);

        a.recycle();

        mViewport = new PointF(mViewportWidth, mViewportHeight);
    }

    // See https://github.com/romainguy/road-trip/blob/master/application/src/main/java/org/curiouscreature/android/roadtrip/IntroView.java
    // Note: using a software layer here is an optimization. This view works with
    // hardware accelerated rendering but every time a path is modified (when the
    // dash path effect is modified), the graphics pipeline will rasterize the path
    // again in a new texture. Since we are dealing with dozens of paths, it is much
    // more efficient to rasterize the entire view into a single re-usable texture
    // instead. Ideally this should be toggled using a heuristic based on the number
    // and or dimensions of paths to render.
    // Note that PathDashPathEffects can lead to clipping issues with hardware rendering.
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
        setLayerType(LAYER_TYPE_SOFTWARE, null);
    }
}

From source file:com.donsen.svg.ui.common.AnimatedSvgView.java

@SuppressWarnings("NewApi")
private void init(Context context, AttributeSet attrs) {
    mFillPaint = new Paint();
    mFillPaint.setAntiAlias(true);/*from w w w  .  j  av a  2s  .  c o m*/
    mFillPaint.setStyle(Paint.Style.FILL);

    mMarkerLength = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, MARKER_LENGTH_DIP,
            getResources().getDisplayMetrics());

    mTraceColors = new int[1];
    mTraceColors[0] = Color.BLACK;
    mTraceResidueColors = new int[1];
    mTraceResidueColors[0] = Color.argb(50, 0, 0, 0);

    if (attrs != null) {
        TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.AnimatedSvgView);

        mViewportWidth = a.getInt(R.styleable.AnimatedSvgView_svgImageSizeX, 433);
        mRatioSizingInfo.aspectRatioWidth = a.getInt(R.styleable.AnimatedSvgView_svgImageSizeX, 433);
        mViewportHeight = a.getInt(R.styleable.AnimatedSvgView_svgImageSizeY, 433);
        mRatioSizingInfo.aspectRatioHeight = a.getInt(R.styleable.AnimatedSvgView_svgImageSizeY, 433);

        mTraceTime = a.getInt(R.styleable.AnimatedSvgView_svgTraceTime, 2000);
        mTraceTimePerGlyph = a.getInt(R.styleable.AnimatedSvgView_svgTraceTimePerGlyph, 1000);
        mFillStart = a.getInt(R.styleable.AnimatedSvgView_svgFillStart, 1200);
        mFillTime = a.getInt(R.styleable.AnimatedSvgView_svgFillTime, 1000);

        a.recycle();

        mViewport = new PointF(mViewportWidth, mViewportHeight);
    }

    // See https://github.com/romainguy/road-trip/blob/master/application/src/main/java/org/curiouscreature/android/roadtrip/IntroView.java
    // Note: using a software layer here is an optimization. This view works with
    // hardware accelerated rendering but every time a path is modified (when the
    // dash path effect is modified), the graphics pipeline will rasterize the path
    // again in a new texture. Since we are dealing with dozens of paths, it is much
    // more efficient to rasterize the entire view into a single re-usable texture
    // instead. Ideally this should be toggled using a heuristic based on the number
    // and or dimensions of paths to render.
    // Note that PathDashPathEffects can lead to clipping issues with hardware rendering.
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
        setLayerType(LAYER_TYPE_SOFTWARE, null);
    }
}

From source file:com.daitu_liang.study.mytest.svg.AnimatedSvgView.java

private void init(Context context, AttributeSet attrs) {
    mFillPaint = new Paint();
    mFillPaint.setAntiAlias(true);/*from   w  w  w .ja  v a  2  s . com*/
    mFillPaint.setStyle(Paint.Style.FILL);

    mMarkerLength = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, MARKER_LENGTH_DIP,
            getResources().getDisplayMetrics());

    mTraceColors = new int[1];
    mTraceColors[0] = Color.BLACK;
    mTraceResidueColors = new int[1];
    mTraceResidueColors[0] = Color.argb(50, 0, 0, 0);

    if (attrs != null) {
        TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.AnimatedSvgView);

        mViewportWidth = a.getInt(R.styleable.AnimatedSvgView_oakSvgImageSizeX, 433);
        Log.i(TAG, "mViewportWidth=" + mViewportWidth);
        mRatioSizingInfo.aspectRatioWidth = a.getInt(R.styleable.AnimatedSvgView_oakSvgImageSizeX, 433);
        mViewportHeight = a.getInt(R.styleable.AnimatedSvgView_oakSvgImageSizeY, 433);
        mRatioSizingInfo.aspectRatioHeight = a.getInt(R.styleable.AnimatedSvgView_oakSvgImageSizeY, 433);

        mTraceTime = a.getInt(R.styleable.AnimatedSvgView_oakSvgTraceTime, 2000);
        mTraceTimePerGlyph = a.getInt(R.styleable.AnimatedSvgView_oakSvgTraceTimePerGlyph, 1000);
        mFillStart = a.getInt(R.styleable.AnimatedSvgView_oakSvgFillStart, 1200);
        mFillTime = a.getInt(R.styleable.AnimatedSvgView_oakSvgFillTime, 1000);

        a.recycle();

        mViewport = new PointF(mViewportWidth, mViewportHeight);
    }

}

From source file:com.github.shareme.gwsmaterialuikit.library.ccv.CompactCalendarView.java

public CompactCalendarView(Context context, AttributeSet attrs, int defStyleAttr) {
    super(context, attrs, defStyleAttr);
    compactCalendarController = new CompactCalendarController(new Paint(), new OverScroller(getContext()),
            new Rect(), attrs, getContext(), Color.argb(255, 233, 84, 81), Color.argb(255, 64, 64, 64),
            Color.argb(255, 219, 219, 219), VelocityTracker.obtain());
    gestureDetector = new GestureDetectorCompat(getContext(), gestureListener);
    animationHandler = new AnimationHandler(compactCalendarController, this);
}

From source file:de.j4velin.wifiAutoOff.Map.java

@Override
public void onCreate(final Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.map);/*  w  ww  .  j  av  a 2  s .c  o m*/

    location = getIntent().getParcelableExtra("location");

    mMap = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map)).getMap();

    if (mMap == null) {
        if (BuildConfig.DEBUG)
            Logger.log("Map = null - play services available: "
                    + GooglePlayServicesUtil.isGooglePlayServicesAvailable(this));
        Dialog d = GooglePlayServicesUtil
                .getErrorDialog(GooglePlayServicesUtil.isGooglePlayServicesAvailable(this), this, 0);
        d.setOnDismissListener(new OnDismissListener() {
            @Override
            public void onDismiss(final DialogInterface dialog) {
                finish();
            }
        });
        d.show();
        return;
    }

    if (location == null) {
        mGoogleApiClient = new GoogleApiClient.Builder(this).addApi(LocationServices.API)
                .addConnectionCallbacks(new GoogleApiClient.ConnectionCallbacks() {
                    @Override
                    public void onConnected(final Bundle bundle) {
                        Location l = LocationServices.FusedLocationApi.getLastLocation(mGoogleApiClient);
                        if (l != null && mMap.getCameraPosition().zoom <= 2) {
                            mMap.moveCamera(CameraUpdateFactory
                                    .newLatLngZoom(new LatLng(l.getLatitude(), l.getLongitude()), 16));
                        }
                        mGoogleApiClient.disconnect();
                    }

                    @Override
                    public void onConnectionSuspended(int cause) {
                        if (BuildConfig.DEBUG)
                            Logger.log("connection suspended: " + cause);
                    }
                }).build();

        mGoogleApiClient.connect();

        mMap.setOnMapClickListener(new OnMapClickListener() {
            @Override
            public void onMapClick(final LatLng center) {
                getIntent().putExtra("location", center);
                setResult(RESULT_OK, getIntent());
                finish();
            }
        });
    } else {
        mMap.addCircle(new CircleOptions().center(location).radius(100).strokeColor(Color.RED)
                .fillColor(Color.argb(64, 255, 0, 0)));
        mMap.moveCamera(CameraUpdateFactory.newLatLngZoom(location, 16));
    }

    mMap.setMyLocationEnabled(true);
}

From source file:org.sfx.catholicjourney.core.view.BezelImageView.java

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

    // Attribute initialization
    final TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.BezelImageView, defStyle, 0);

    mMaskDrawable = a.getDrawable(R.styleable.BezelImageView_biv_maskDrawable);
    if (mMaskDrawable != null) {
        mMaskDrawable.setCallback(this);
    }/*from w w w  .j  a  v  a 2 s . c o  m*/

    mSelectorColor = a.getColor(R.styleable.BezelImageView_biv_selectorOnPress, 0);

    a.recycle();

    // Other initialization
    mBlackPaint = new Paint();
    mBlackPaint.setColor(0xff000000);

    mMaskedPaint = new Paint();
    mMaskedPaint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.SRC_IN));

    // Always want a cache allocated.
    mCacheBitmap = Bitmap.createBitmap(1, 1, Bitmap.Config.ARGB_8888);

    // Create a desaturate color filter for pressed state.
    ColorMatrix cm = new ColorMatrix();
    cm.setSaturation(0);
    mDesaturateColorFilter = new ColorMatrixColorFilter(cm);

    //create a selectorFilter if we already have a color
    if (mSelectorColor != 0) {
        this.mSelectorFilter = new PorterDuffColorFilter(Color.argb(mSelectorAlpha, Color.red(mSelectorColor),
                Color.green(mSelectorColor), Color.blue(mSelectorColor)), PorterDuff.Mode.SRC_ATOP);
    }

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
        addElevationSupport();
    }
}

From source file:org.skilladev.gcm.GcmIntentService.java

private void sendNotification(String sender, Bundle extras) {
    mNotificationManager = (NotificationManager) this.getSystemService(Context.NOTIFICATION_SERVICE);

    Intent intent = new Intent(this, es.ubiqua.atractivas.LoadingActivity.class);
    intent.putExtra("param", extras.getString("param"));
    intent.putExtra("paramvalue", extras.getString("paramvalue"));
    PendingIntent contentIntent = PendingIntent.getActivity(this, 7966, intent, 0);

    NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(this).setContentIntent(contentIntent)
            .setSmallIcon(R.drawable.ic_launcher)
            .setContentTitle((sender != null ? sender : "") + extras.getString("sender"))
            .setStyle(new NotificationCompat.BigTextStyle().bigText(extras.getString("text")))
            .setContentText(extras.getString("text")).setAutoCancel(true)
            .setLights(Color.argb(0, 128, 128, 255), 500, 500);

    mNotificationManager.notify(NOTIFICATION_ID, mBuilder.build());
}

From source file:com.tsroad.map.PositionButtonActivity.java

/**
 * amap//from   w ww  .j av  a  2 s. co m
 */
private void setUpMap() {
    ArrayList<BitmapDescriptor> giflist = new ArrayList<BitmapDescriptor>();
    giflist.add(BitmapDescriptorFactory.fromResource(R.drawable.point1));
    giflist.add(BitmapDescriptorFactory.fromResource(R.drawable.point2));
    giflist.add(BitmapDescriptorFactory.fromResource(R.drawable.point3));
    giflist.add(BitmapDescriptorFactory.fromResource(R.drawable.point4));
    giflist.add(BitmapDescriptorFactory.fromResource(R.drawable.point5));
    //    giflist.add(BitmapDescriptorFactory.fromResource(R.drawable.point6));
    marker = aMap.addMarker(new MarkerOptions().anchor(0.5f, 0.5f).icons(giflist).period(50));
    // ???
    MyLocationStyle myLocationStyle = new MyLocationStyle();
    myLocationStyle.myLocationIcon(BitmapDescriptorFactory.fromResource(R.drawable.location_marker));// ??
    myLocationStyle.strokeColor(Color.BLACK);// 
    myLocationStyle.radiusFillColor(Color.argb(100, 0, 0, 180));// 
    // myLocationStyle.anchor(int,int)//??
    myLocationStyle.strokeWidth(0.1f);// 
    aMap.setMyLocationStyle(myLocationStyle);
    aMap.setMyLocationRotateAngle(180);
    aMap.setLocationSource(this);// ??
    aMap.getUiSettings().setMyLocationButtonEnabled(true);// ??
    aMap.setMyLocationEnabled(true);// true????false???????false
    //??? ?????????
    aMap.setMyLocationType(AMap.LOCATION_TYPE_LOCATE);
}

From source file:de.gebatzens.sia.FirstUseActivity.java

@Override
protected void onCreate(Bundle bundle) {
    AppCompatDelegate.setDefaultNightMode(SIAApp.SIA_APP.getThemeMode());
    setTheme(R.style.FirstUseTheme);// w  w w  . ja  va2s . c o  m
    adapter = new FirstUseAdapter(getSupportFragmentManager(), FirstUseActivity.this);

    super.onCreate(bundle);

    if (SIAApp.SIA_APP.getCustomThemeName() != null) {
        if (SIAApp.SIA_APP.getCustomThemeName().equals("Summer")
                || SIAApp.SIA_APP.getCustomThemeName().equals("Winter")) {
            String themeName = SIAApp.SIA_APP.getSeasonTheme();
            if (!SIAApp.SIA_APP.getCustomThemeName().equals(themeName)) {
                if (themeName.equals("Winter")) {
                    SIAApp.SIA_APP.setCustomThemeName("Winter");
                    SIAApp.SIA_APP.school.loadTheme();
                } else {
                    SIAApp.SIA_APP.setCustomThemeName("Summer");
                    SIAApp.SIA_APP.school.loadTheme();
                }
            }
        }
    }

    if (SIAApp.SIA_APP.preferences.getBoolean("first_use", false)) {
        startActivity(new Intent(this, SetupActivity.class));
        finish();
        return;
    }

    setContentView(R.layout.activity_firstuse);

    final ViewPager viewPager = (ViewPager) findViewById(R.id.viewpager);
    viewPager.setAdapter(adapter);
    viewPager.setOffscreenPageLimit(3);

    final TabLayout tabLayout = (TabLayout) findViewById(R.id.sliding_tabs);
    tabLayout.setupWithViewPager(viewPager);

    tabLayout.getTabAt(0).getCustomView().setSelected(true);

    iv_left = (ImageView) findViewById(R.id.fu_button_left);
    iv_right = (ImageView) findViewById(R.id.fu_button_right);

    iv_left.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            SIAApp.SIA_APP.preferences.edit().putBoolean("first_use", true).apply();
            startActivity(new Intent(v.getContext(), SetupActivity.class));
            finish();
        }
    });

    iv_right.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            viewPager.setCurrentItem(1);
        }
    });

    viewPager.addOnPageChangeListener(new ViewPager.OnPageChangeListener() {
        @Override
        public void onPageScrolled(int i, float v, int i1) {
            FirstUseAdapter adapter = (FirstUseAdapter) viewPager.getAdapter();

            if (i >= 5)
                return;

            FirstUseFragment frag1 = adapter.fragments.get(i);
            FirstUseFragment frag2 = adapter.fragments.get(i + 1);

            int red = (int) (Color.red(frag1.color) * (1f - v) + Color.red(frag2.color) * v);
            int green = (int) (Color.green(frag1.color) * (1f - v) + Color.green(frag2.color) * v);
            int blue = (int) (Color.blue(frag1.color) * (1f - v) + Color.blue(frag2.color) * v);
            int newColor = Color.argb(255, red, green, blue);

            if (frag1.getView() != null)
                frag1.getView().setBackgroundColor(newColor);
            if (frag2.getView() != null)
                frag2.getView().setBackgroundColor(newColor);

        }

        @Override
        public void onPageSelected(int i) {
            if (i > 0)
                iv_left.setVisibility(View.INVISIBLE);
            else
                iv_left.setVisibility(View.VISIBLE);

            final int i2 = i;
            if (i == 5) {
                iv_right.setImageResource(R.drawable.ic_done);
                iv_right.setOnClickListener(new View.OnClickListener() {
                    @Override
                    public void onClick(View v) {
                        SIAApp.SIA_APP.preferences.edit().putBoolean("first_use", true).apply();
                        startActivity(new Intent(v.getContext(), SetupActivity.class));
                        finish();
                    }
                });
            } else {
                iv_right.setImageResource(R.drawable.ic_arrow_forward);
                iv_right.setOnClickListener(new View.OnClickListener() {
                    @Override
                    public void onClick(View v) {
                        viewPager.setCurrentItem(i2 + 1);
                    }
                });
            }
        }

        @Override
        public void onPageScrollStateChanged(int i) {

        }
    });

}

From source file:com.cnh.library.materialdrawer.view.BezelImageView.java

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

    // Attribute initialization
    final TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.BezelImageView, defStyle,
            R.style.BezelImageView);//from   ww  w .j a v a2  s  .  c o m

    mMaskDrawable = a.getDrawable(R.styleable.BezelImageView_biv_maskDrawable);
    if (mMaskDrawable != null) {
        mMaskDrawable.setCallback(this);
    }

    mDrawCircularShadow = a.getBoolean(R.styleable.BezelImageView_biv_drawCircularShadow, true);

    mSelectorColor = a.getColor(R.styleable.BezelImageView_biv_selectorOnPress, 0);

    a.recycle();

    // Other initialization
    mBlackPaint = new Paint();
    mBlackPaint.setColor(0xff000000);

    mMaskedPaint = new Paint();
    mMaskedPaint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.SRC_IN));

    // Always want a cache allocated.
    mCacheBitmap = Bitmap.createBitmap(1, 1, Bitmap.Config.ARGB_8888);

    // Create a desaturate color filter for pressed state.
    ColorMatrix cm = new ColorMatrix();
    cm.setSaturation(0);
    mDesaturateColorFilter = new ColorMatrixColorFilter(cm);

    //create a selectorFilter if we already have a color
    if (mSelectorColor != 0) {
        this.mSelectorFilter = new PorterDuffColorFilter(Color.argb(mSelectorAlpha, Color.red(mSelectorColor),
                Color.green(mSelectorColor), Color.blue(mSelectorColor)), PorterDuff.Mode.SRC_ATOP);
    }
}