Skip to content
View dhagz's full-sized avatar
Block or Report

Block or report dhagz

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. githubusers githubusers Public

    An app that can fetch GitHub users list and then display the selected user's profile.

    Kotlin

  2. scan-calc scan-calc Public

    Kotlin

  3. A simple indeterminate progress dial... A simple indeterminate progress dialog. Call with MyProgressDialog.show(context) and dismiss with MyProgressDialog.dismiss(myProgressDialog).
    1
    import android.app.Dialog;
    2
    import android.content.Context;
    3
    import android.content.res.Resources;
    4
    import android.graphics.Color;
    5
    import android.graphics.drawable.GradientDrawable;
  4. Background attribute for views to ha... Background attribute for views to have a ripple effect
    1
    # Material Ripple Background
    2
    `?android:attr/selectableItemBackground` to keep the ripple effect inside the `View` bounderies.  
    3
    `?android:attr/selectableItemBackgroundBorderless` allows the effect to go outside of the `View`.  
    4
      
    5
    Source: http://stackoverflow.com/questions/30530893/selectableitembackgroundborderless-for-textview
  5. Android Studio Eclipse Keymap with m... Android Studio Eclipse Keymap with my modifications and Codestyles.
    1
    <code_scheme name="Codestyles - Dhagz" version="173">
    2
      <option name="USE_SAME_INDENTS" value="true" />
    3
      <option name="IGNORE_SAME_INDENTS_FOR_LANGUAGES" value="true" />
    4
      <option name="OTHER_INDENT_OPTIONS">
    5
        <value>
  6. JPEG Compressor JPEG Compressor
    1
    import android.graphics.Bitmap;
    2
    import android.graphics.BitmapFactory;
    3
    import android.graphics.Matrix;
    4
    import android.support.annotation.NonNull;
    5
    import android.support.media.ExifInterface;