How to make TextView Blink in android

Sometimes , you should be need the textview blink like a digital clock. here is the simple code for you should make blink textview in android. I have discussed here , mainly 3 methods,

Method 1:

private void blinkTextView(){
    final Handler handler = new Handler();
    new Thread(new Runnable() {
        @Override
        public void run() {
        int timeToBlink = 1000;    //in milissegunds
        try{Thread.sleep(timeToBlink);}catch (Exception e) {}
            handler.post(new Runnable() {
                @Override
                    public void run() {
                    TextView tvBlink = (TextView) findViewById(R.id.textViewBlink);
                    if(tvBlink .getVisibility() == View.VISIBLE){
                        tvBlink .setVisibility(View.INVISIBLE);
                    }else{
                        tvBlink .setVisibility(View.VISIBLE);
                    }
                    blinkTextView();
                }
                });
            }
        }).start();
    }

call the blinkTextView in onCreate, if you want blink textview whenever load application.

Method 2:


TextView tvBlink = (TextView) findViewById(R.id.textViewBlink);

Animation anim = new AlphaAnimation(0.0f, 1.0f);
anim.setDuration(50); //You can manage the blinking time with this parameter
anim.setStartOffset(20);
anim.setRepeatMode(Animation.REVERSE);
anim.setRepeatCount(Animation.INFINITE);
tvBlink .startAnimation(anim);


Method 3:

final ObjectAnimator textColorAnim;

and in onCreate, there should be

TextView blinkText = (TextView) findViewById(R.id.blinkTextView);
blinkTextView(blinkText );

Now definition of above function:

private void blinkTextView(TextView blinkTextView){
       textColorAnim = ObjectAnimator.ofInt(blinkTextView, "textColor", Color.BLACK, Color.TRANSPARENT);
                textColorAnim.setDuration(1000);
                textColorAnim.setEvaluator(new ArgbEvaluator());  
                textColorAnim.setRepeatCount(ValueAnimator.INFINITE);
                textColorAnim.setRepeatMode(ValueAnimator.REVERSE);
                textColorAnim.start();
}


How to validate email address in Android or Android Studio

Email address validation simple the check the given address match of pattern or not. Here is the simple example to validate email,

public final static Pattern EMAIL_ADDRESS_PATTERN = Pattern.compile(
            "[a-zA-Z0-9+._%-+]{1,256}" +
            "@" +
            "[a-zA-Z0-9][a-zA-Z0-9-]{0,64}" +
            "(" +
            "." +
            "[a-zA-Z0-9][a-zA-Z0-9-]{0,25}" +
            ")+"
        );

public static boolean checkEmail(String email) {
        return EMAIL_ADDRESS_PATTERN.matcher(email).matches();
    }

Here checkEmail Address take parameter email and it return true or false, if email address valid then true otherwise it return false boolean value.

----------------------------------------------------------------------------

There are another method, Java Regex : Validate Email Address

String regex = "^(.+)@(.+)$";
//or
//String regex = "^[A-Za-z0-9+_.-]+@(.+)$";
//or
//String regex = "^[a-zA-Z0-9_!#$%&'*+/=?`{|}~^.-]+@[a-zA-Z0-9.-]+$";
//or
//String regex = "^[a-zA-Z0-9_!#$%&'*+/=?`{|}~^-]+(?:\\.[a-zA-Z0-9_!#$%&'*+/=?`{|}~^-]+)*@[a-zA-Z0-9-]+(?:\\.[a-zA-Z0-9-]+)*$";
//or
// personally, i recommend this.
//String regex = "^[\\w!#$%&'*+/=?`{|}~^-]+(?:\\.[\\w!#$%&'*+/=?`{|}~^-]+)*@(?:[a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,6}$";
Pattern pattern = Pattern.compile(regex);

public static boolean checkEmail(String email) {
         Matcher matcher = pattern.matcher(email);
        return matcher.matches();
    }

---------------------------------------------------------------------------
You can use this ,

public static boolean isValidEmailAddress(String email) {
   boolean result = true;
   try {
      InternetAddress emailAddr = new InternetAddress(email);
      emailAddr.validate();
   } catch (AddressException ex) {
      result = false;
   }
   return result;
}


you can use this plugin also for email suggester: https://github.com/Fewlaps/quitnow-email-suggester

validation in UI, here is the simple tutorials, https://android-arsenal.com/details/1/1605

Samsung Galaxy S7 and Galaxy S7 Edge Features, Prices and Specification

The Galaxy S7 and Galaxy S7 Edge both accept MicroSD cards, allowing their storage to be expanded, and can also be submerged underwater.

In addition, they feature new gaming tech and a rear camera that should cope better in low-light conditions.

The Galaxy S7 display is a 5.1-inch QHD unit with QHD resolution (2,560 x 1440 pixels). It's a real beast – easily one of the brightest screens in the Android world, and eye-wateringly so on the highest setting.

specifications of Galaxy S7

Model Name Galaxy S7
Display 5.1 inch Display (1440 X 2560 Resolution)
(Super AMOLED, Force Touch with  TouchWIZ UI)
Processor Octa Core Snapdragon 820,
Exynos 8890, 64 bit Chipset
Dimensions 142.4 X 69.6 X 7.9 mm, 152 grams
SIM Nano SIM, Samsung Pay
Protection Corning Gorilla Glass 5,
IP68 Water & Dust Resistance
GPU Adreno 530, Mali-T880 MP12
~577 ppi pixel density
OS Android v6.0 (Marshmallow OS)
RAM 4 GB
Memory 32 and 64 GB,
Micro SD up to 200 GB
Camera 12 MP f/1.7 primary camera, 26 mm
5 MP Front facing camera with Dual Video call
Networking 2G, 3G, 4G LTE, HSPA, GSM support
v4.2 Bluetooth, NFC, Wi-Fi, A-GPS, GLONASS
Sensors Fingerprint, Retina Scanner, Auto HDR, Gyro, OIS,
Accelerometer, Barometer, Proximity, Heart Rate etc.
Battery 3000 mAh Non-Removable Battery
Colors Black, Silver, Gold, White
Release date February 21, 2016

Samsung Galaxy S7 Edge specifications

  • 5.5 inch SUPER AMOLED
  • 1440 X 2560 pixels, ~534 ppi
  • 150.9 X 72.6 X 7.7 mm, 157 grams
  • Android v6.0 Marshmallow
  • Curved Edge display
  • Snapdragon 820, Exynos 8890 Octa
  • 4GB RAM, 32 / 64 GB, micro SD up to 200 GB
  • 12 MP primary camera
  • 5 MP front camera
  • 3600 mAh non-removable battery

Battery Life:
Stop waiting for your phone to charge. With fast wireless charging2, the Galaxy S7 powers up from 0 to 100% in no time. And with our biggest battery yet3, the Galaxy S7 gives you the power to keep going.

Operating System:

Things just got sweeter. The Galaxy S7 edge & Galaxy S7 are now powered by the latest Android Marshmallow OS. So you have the power to do more.

Expandable Memory:

Running out of memory shouldn't be a thing. So if 32GB4 isn't already enough, you can add an additional 200GB with a microSD card.5 No clouds, no hard drives.

Enhanced camera:

The first smartphone with dual-pixel technology has a fast autofocus for less blur and a new advanced sensor for catching details in low light. Capture moments as you actually see them.

Water -resistance:

You can't live without water or your smartphone, which is why the Galaxy S7 edge & Galaxy S7 has an IP68 rating. That means it repels spills, splashes and even dunks so you can save the rice for cooking.


Prices:
It was  revealed that the Samsung Pay smart wallet service would be expanded to the UK, Australia, Brazil, Canada, China, Singapore and Spain this year.

Australia: AU $ 1,245
Germany: €840
Belgium: €840
US: $999
UK: $999
Canada: $999
Italy: €840
Denmark: 6240 Danish Krone
South Africa: 11,145 South African Rand
Indonesia: 11,542,264 Indonesian Rupiah
Malaysia: 3,652 Malaysian Ringgit
India: Rs 68,500




More Details: 
http://www.samsung.com/us/explore/galaxy-s7-features-and-specs/
http://www.igalaxys7.com/


Image Convert to Bitmap, ByteArray, Drawable in Android or Android studio

Sometimes we stocked during image processing in android in to ImageView, if will be be through exception.

Here is the some image convert in to bitmap and reverse process.

Convert Drawable image in to bitmap:

Bitmap profimeBitmap = BitmapFactory.decodeResource(getResources(), R.drawable.profile);

Another methods, if above not working

public Bitmap convertToBitmap(Drawable profile, int widthPixels, int heightPixels) {
     Bitmap profileBitmap = Bitmap.createBitmap(widthPixels, heightPixels, Bitmap.Config.ARGB_8888);
    Canvas canvas = new Canvas(profileBitmap);
    profile.setBounds(0, 0, widthPixels, heightPixels);
    profile.draw(canvas);

    return profileBitmap;
}

Getting Bitmap from image url

public static Bitmap getBitmapFromURL(String src) {
    try {
        URL url = new URL(src);
        HttpURLConnection connection = (HttpURLConnection) url.openConnection();
        connection.setDoInput(true);
        connection.connect();
        InputStream input = connection.getInputStream();
        Bitmap myBitmap = BitmapFactory.decodeStream(input);
        return myBitmap;
    } catch (IOException e) {
        e.printStackTrace();
        return null;
    }
}

Convert Bitmap type image to Drawable,

Drawable drawableProfile = new BitmapDrawable(getResources(), bitmapProfile);


Covert Bitmap to BitmapDrawable

BitmapDrawable bdProfile= new BitmapDrawable(bitmapProfile);


Retrive Bitmap when you set bitmap image on imageview,

imageView.setImageBitmap(profileBitmap);

Now, getting bitmap from imageView ,

Bitmap bitmapProfile = ((BitmapDrawable)imageView.getDrawable()).getBitmap();


Convert from bitmap to byte array:

public byte[] getBytesFromBitmap(Bitmap bitmap) {
    ByteArrayOutputStream stream = new ByteArrayOutputStream();
    bitmap.compress(CompressFormat.JPEG, 70, stream);
    return stream.toByteArray();
}

Convert SD Card Image to Bitmap to Byte Array:

String path="/path/images/image.jpg";

public byte[] getBytesFromBitmap(String path) {
    Bitmap bitmap = BitmapFactory.decodeFile(path);
   ByteArrayOutputStream blob = new ByteArrayOutputStream();
   bitmap.compress(CompressFormat.PNG, 0 , blob);
   byte[] bitmapdata = blob.toByteArray();
   return bitmapdata;
}


Convert from byte array to bitmap:

Bitmap bitmapProfile = BitmapFactory.decodeByteArray(bitmapbyteArraydata , 0, bitmapbyteArraydata .length);

OR

public Bitmap ByteArrayToBitmap(byte[] byteArray)
    {
        ByteArrayInputStream arrayInputStream = new ByteArrayInputStream(byteArray);
        Bitmap bitmapProfile = BitmapFactory.decodeStream(arrayInputStream);
        return bitmapProfile;
    }




How to make custom button in android or android studio

Button in android most important part in android application, here is the simple procedure to make custom button in android or android studio, android when click button it will be change its color when onclick, release state .

First step:
In drawable folder you have to make custom button using selector.



------------------------
Blue Button
----------
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true" >
        <shape>
            <solid
                android:color="#449def" />
            <stroke
                android:width="1dp"
                android:color="#2f6699" />
            <corners
                android:radius="3dp" />
            <padding
                android:left="10dp"
                android:top="10dp"
                android:right="10dp"
                android:bottom="10dp" />
        </shape>
    </item>
    <item>
        <shape>
            <gradient
                android:startColor="#449def"
                android:endColor="#2f6699"
                android:angle="270" />
            <stroke
                android:width="1dp"
                android:color="#2f6699" />
            <corners
                android:radius="4dp" />
            <padding
                android:left="10dp"
                android:top="10dp"
                android:right="10dp"
                android:bottom="10dp" />
        </shape>
    </item>
</selector>

Red Button
-------------
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true" >
        <shape>
            <solid
                android:color="#ef4444" />
            <stroke
                android:width="1dp"
                android:color="#992f2f" />
            <corners
                android:radius="3dp" />
            <padding
                android:left="10dp"
                android:top="10dp"
                android:right="10dp"
                android:bottom="10dp" />
        </shape>
    </item>
    <item>
        <shape>
            <gradient
                android:startColor="#ef4444"
                android:endColor="#992f2f"
                android:angle="270" />
            <stroke
                android:width="1dp"
                android:color="#992f2f" />
            <corners
                android:radius="3dp" />
            <padding
                android:left="10dp"
                android:top="10dp"
                android:right="10dp"
                android:bottom="10dp" />
        </shape>
    </item>
</selector>

Purpal button
------------------
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true" >
        <shape>
            <solid
                android:color="#a276eb" />
            <stroke
                android:width="1dp"
                android:color="#6a3ab2" />
            <corners
                android:radius="3dp" />
            <padding
                android:left="10dp"
                android:top="10dp"
                android:right="10dp"
                android:bottom="10dp" />
        </shape>
    </item>
    <item>
        <shape>
            <gradient
                android:startColor="#a276eb"
                android:endColor="#6a3ab2"
                android:angle="270" />
            <stroke
                android:width="1dp"
                android:color="#6a3ab2" />
            <corners
                android:radius="4dp" />
            <padding
                android:left="10dp"
                android:top="10dp"
                android:right="10dp"
                android:bottom="10dp" />
        </shape>
    </item>
</selector>

Green Button
---------
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true" >
        <shape>
            <solid
                android:color="#70c656" />
            <stroke
                android:width="1dp"
                android:color="#53933f" />
            <corners
                android:radius="3dp" />
            <padding
                android:left="10dp"
                android:top="10dp"
                android:right="10dp"
                android:bottom="10dp" />
        </shape>
    </item>
    <item>
        <shape>
            <gradient
                android:startColor="#70c656"
                android:endColor="#53933f"
                android:angle="270" />
            <stroke
                android:width="1dp"
                android:color="#53933f" />
            <corners
                android:radius="4dp" />
            <padding
                android:left="10dp"
                android:top="10dp"
                android:right="10dp"
                android:bottom="10dp" />
        </shape>
    </item>
</selector>

Yello Button
------------
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true" >
        <shape>
            <solid
                android:color="#f3ae1b" />
            <stroke
                android:width="1dp"
                android:color="#bb6008" />
            <corners
                android:radius="3dp" />
            <padding
                android:left="10dp"
                android:top="10dp"
                android:right="10dp"
                android:bottom="10dp" />
        </shape>
    </item>
    <item>
        <shape>
            <gradient
                android:startColor="#f3ae1b"
                android:endColor="#bb6008"
                android:angle="270" />
            <stroke
                android:width="1dp"
                android:color="#bb6008" />
            <corners
                android:radius="4dp" />
            <padding
                android:left="10dp"
                android:top="10dp"
                android:right="10dp"
                android:bottom="10dp" />
        </shape>
    </item>
</selector>

Black Button
----------------
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true" >
        <shape>
            <solid
                android:color="#343434" />
            <stroke
                android:width="1dp"
                android:color="#171717" />
            <corners
                android:radius="3dp" />
            <padding
                android:left="10dp"
                android:top="10dp"
                android:right="10dp"
                android:bottom="10dp" />
        </shape>
    </item>
    <item>
        <shape>
            <gradient
                android:startColor="#343434"
                android:endColor="#171717"
                android:angle="270" />
            <stroke
                android:width="1dp"
                android:color="#171717" />
            <corners
                android:radius="4dp" />
            <padding
                android:left="10dp"
                android:top="10dp"
                android:right="10dp"
                android:bottom="10dp" />
        </shape>
    </item>
</selector>


Now, you can set button these drawable in two methods,

1. From layout of button
----------------
android:background="@drawable/btn_black

1. Programmatically
-----------
buttonBlack.setBackgroundResource(R.drawable.btn_black);
like other colors.


Output looks like:


Happy Coding !!!

Spring MVC Tutorial - Step 1 (Getting Started & Setting up IDE)

Q. What is Spring MVC
A : The Spring Web model-view-controller (MVC) framework is designed around a DispatcherServlet that dispatches requests to handlers, with configurable handler mappings, view resolution, locale, time zone and theme resolution as well as support for uploading files. The default handler is based on the @Controller and@RequestMapping annotations, offering a wide range of flexible handling methods. With the introduction of Spring 3.0, the @Controller mechanism also allows you to create RESTful Web sites and applications, through the @PathVariable annotation and other features.

Q. How to Start Happy Coding with Spring MVC
A: At first we need to download Eclipse, you can also use another but in this tutorial we are using eclipse IDE, And download the Spring Core from this link : Click here here we are using the 4.2.0 module for spring

Q. I am bored can we lets get directly in the code?
A: :) offcourse lets dive into it lets first create the project in the eclipse. and then just follow the steps:

1. Create a project under the web -> dynamic web project 

2. Name your project then click next and again yes next :) then click the check box called : Generate web.xml deployment descriptor and then click finish.
3. Oh yes the project folder is created now. Now unzip the spring core and copy and paste all the libs material in the project libs folder. (Web-Content -> WEB-INF -> Libs).
4. Now again download the zip file from here extract it and copy the common-logging-1.2.jar to the pevious libs folder.
5. Last but not the least we need a web server like Apache Tomcat, JBoss etc. Here I am using Apache Tomcat server - link

in the text step we will intregate Apache with eclipse fell free to comment if you are stuck anywhere happy Coding :)

    

Jobs: Android Developer in Amazon

Are you looking for big job in big company, here is the amazon have an android developer jobs in different area.



There are many vacany in amazon, but recently there are

 Android Developer,  Sr.Android Developer  , Software Development Engineer, Amazon Flex Android App and many more,

More Jobs Click   Amazon Android Developer Jobs


How to make Round or Circle ImageView in Android or Android studio

Rounded or Circle ImageView in android or andorid studio making some tips and code,

First you have to create RoundedImageView in you app or src folder..
public class RoundedImageView extends ImageView {

    public RoundedImageView(Context context) {
        super(context);
        // TODO Auto-generated constructor stub    }

    public RoundedImageView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

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

    @Override    protected void onDraw(Canvas canvas) {

        Drawable drawable = getDrawable();

        if (drawable == null) {
            return;
        }

        if (getWidth() == 0 || getHeight() == 0) {
            return;
        }
        Bitmap b =  ((BitmapDrawable)drawable).getBitmap() ;
        Bitmap bitmap = b.copy(Bitmap.Config.ARGB_8888, true);

        int w = getWidth(), h = getHeight();


        Bitmap roundBitmap =  getCroppedBitmap(bitmap, w);
        canvas.drawBitmap(roundBitmap, 0,0, null);

    }

    public static Bitmap getCroppedBitmap(Bitmap bmp, int radius) {
        Bitmap sbmp;
        if(bmp.getWidth() != radius || bmp.getHeight() != radius)
            sbmp = Bitmap.createScaledBitmap(bmp, radius, radius, false);
        else            sbmp = bmp;
        Bitmap output = Bitmap.createBitmap(sbmp.getWidth(),
                sbmp.getHeight(), Config.ARGB_8888);
        Canvas canvas = new Canvas(output);

        final int color = 0xffa19774;
        final Paint paint = new Paint();
        final Rect rect = new Rect(0, 0, sbmp.getWidth(), sbmp.getHeight());

        paint.setAntiAlias(true);
        paint.setFilterBitmap(true);
        paint.setDither(true);
        canvas.drawARGB(0, 0, 0, 0);
        paint.setColor(Color.parseColor("#BAB399"));
        canvas.drawCircle(sbmp.getWidth() / 2+0.7f, sbmp.getHeight() / 2+0.7f,
                sbmp.getWidth() / 2+0.1f, paint);
        paint.setXfermode(new PorterDuffXfermode(Mode.SRC_IN));
        canvas.drawBitmap(sbmp, rect, rect, paint);


        return output;
    }

}
you have to call this java file in your xml to make rounded  or circular image view ,

<co.roundedimageview.RoundedImageView    android:layout_width="200dp"    android:layout_height="200dp"    android:src="@drawable/android"     />

Just like that, you don't need any more.However, if you need to make clickable that image you need this

RoundedImageView riv= new RoundedImageView(this);

and make riv on click just like ImageView.

Initially Image like this;


Output RoundedImageVIew looks like,


Happy Coding !!!

Json parse from webserver in android or android studio

First you have to aware about this, reads a JSON (RFC 4627) encoded value as a stream of tokens. This stream includes both literal values (strings, numbers, booleans, and nulls) as well as the begin and end delimiters of objects and arrays. The tokens are traversed in depth-first order, the same order that they appear in the JSON document. Within JSON objects, name/value pairs are represented by a single token.

Now , How to parse json getting from webserver.

DefaultHttpClient   httpclient = new DefaultHttpClient(new BasicHttpParams());
HttpPost httppost = new HttpPost("http://192.168.1.100/response.php");
httppost.setHeader("Content-type", "application/json");

InputStream inputStream = null;
String result = null;
try {
    HttpResponse response = httpclient.execute(httppost);           
    HttpEntity entity = response.getEntity();

    inputStream = entity.getContent();
    // json is UTF-8 by default
    BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream, "UTF-8"), 8);
    StringBuilder sb = new StringBuilder();

    String line = null;
    while ((line = reader.readLine()) != null)
    {
        sb.append(line + "\n");
    }
    result = sb.toString();
} catch (Exception e) { 
    e.printStack();
}
finally {
    try{
if(inputStream != null)
inputStream.close();
}catch(Exception e){
e.printStack();
}
}

Now you have to create JsonObject


Create a JSONObject like this:

JSONObject jObject = new JSONObject(result);

and parse your requirement.


Happy Coding !!!

Failed to install *.apk on device *: timeout in Android

I faced many times Failed to install *.apk on device *: timeout in Android. So, i have to decided, I tries to clean project many times but unable to solve ,but now how to solve this problem in android.


First you have do this  , change the ADB connection timeout. I think it defaults that to 5000ms and I changed mine to 10000ms to get rid of that problem.

If you are in Eclipse, you can do this by going through

Window -> Preferences -> Android -> DDMS -> ADB Connection Timeout (ms)

If the above solution is working in case your eclipse, do this

Restart the adb server by typing in the cmd:

adb kill-server

adb start-server

Or
simple go to DDMS Perspective and click on Reset adb.

and

There is many way to slove such kind of problem, sometimes it work when you do this

Reboot the phone and completely power down and power up.

Happy Coding !!!

Load or get json from assets and parse in android studio

Basically, when developing app there is data getting from web server, however , here json getting from assets, which is sometimes helpful when static data used in application.

First you have create Assets folder in main.
Right click on app, then select New and go to Folder and click finally you can see assets folder and click, like this



then put json file in assets folder in your app.
Now, in MainActivity,

public class MainActivity extends AppCompatActivity {

    @Override    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);

        FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
        fab.setOnClickListener(new View.OnClickListener() {
            @Override            public void onClick(View view) {
//                Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG)//                        .setAction("Action", null).show();                String jsonString=loadJSONFromAsset();
                Toast.makeText(getApplicationContext(),""+jsonString,Toast.LENGTH_SHORT).show();

            }
        });
    }

    @Override    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.        getMenuInflater().inflate(R.menu.menu_main, menu);
        return true;
    }

    public String loadJSONFromAsset() {
        String json = null;
        try {

            InputStream is = getAssets().open("emp.json");

            int size = is.available();

            byte[] buffer = new byte[size];

            is.read(buffer);

            is.close();

            json = new String(buffer, "UTF-8");

        } catch (IOException ex) {
            ex.printStackTrace();
            return null;
        }
        return json;

    }

    @Override    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will        // automatically handle clicks on the Home/Up button, so long        // as you specify a parent activity in AndroidManifest.xml.        int id = item.getItemId();

        //noinspection SimplifiableIfStatement        if (id == R.id.action_settings) {
            return true;
        }

        return super.onOptionsItemSelected(item);
    }

and Click FloatAction button you will see json in String.


After you got json as a string, then you have parse as your required.
first you have to convert string in jsonobject.

JSONObject  jsonObject = new JSONObject(jsonString);

In last, you have to parse jsonOject as your preset tag in jsonString, here you have to remember that it will be necessary exactly same inside the "".

JSONObject emp_obj = jsonObject .getJSONObject("employees");

Happy Coding !!!

Top 25 Software jobs Salaries

According to Robert Half Technology,  the 20 positions expected to see the largest salary gains, percentage-wise, between 2015 and 2016 are:


1. Wireless network engineer
2015 salary range: $99,000-$137,500
2016 salary range: $108,750-$150,750
9.7% increase

2. Big data engineer
2015 salary range: $119,250-$168,250
2016 salary range: $129,500-$183,500
8.9% increase

3. Data scientist
2015 salary range: $103,000-$138,250
2016 salary range: $109,000-$153,750
8.9% increase

4. Mobile applications developer
2015 salary range: $107,500-$161,500
2016 salary range: $115,250-$175,750
8.2% increase

5. Data security analyst
2015 salary range: $106,250-$149,000
2016 salary range: $113,500-$160,000
7.1% increase

6. Chief security officer
2015 salary range: $134,250-$204,750
2016 salary range: $140,250-$222,500
7.0% increase

7. Developer/programmer analyst
2015 salary range: $74,250-$129,000
2016 salary range: $80,000-$137,000
6.8% increase

8. Lead applications developer
2015 salary range: $106,250-$148,250
2016 salary range: $110,750-$160,750
6.7% increase

9. Network security engineer
2015 salary range: $105,000-$141,500
2016 salary range: $110,250-$152,750
6.7% increase

10. Senior web developer
2015 salary range: $104,500-$144,250
2016 salary range: $111,250-$154,000
6.6% increase

11. Software engineer
2015 salary range: $96,000-$147,250
2016 salary range: $103,000-$156,250
6.6% increase

12. Software developer
2015 salary range: $85,500-$136,250
2016 salary range: $91,000-$145,250
6.5% increase

13. Data architect
2015 salary range: $119,750-$164,750
2016 salary range: $127,250-$175,500
6.4% increase

14. Applications architect
2015 salary range: $115,750-$159,500
2016 salary range: $121,250-$171,750
6.4% increase

15. Web developer
2015 salary range: $73,500-$122,000
2016 salary range: $78,500-$129,500
6.4% increase

16. Network administrator
2015 salary range: $71,250-$105,750
2016 salary range: $76,250-$112,000
6.4% increase

17. Information systems security manager
2015 salary range: $122,250-$171,250
2016 salary range: $129,750-$182,000
6.2% increase

18. Business intelligence analyst
2015 salary range: $108,500-$153,000
2016 salary range: $113,750-$164,000
6.2% increase

19. Data modeler
2015 salary range: $101,750-$145,250
2016 salary range: $106,750-$155,500
6.2% increase

20. Help desk tier 3
2015 salary range: $55,250-$74,000
2016 salary range: $59,500-$77,750
6.2% increase

No resource found that matches the given name after upgrading to AppCompat v23 in android studio

I have stocked in many times of by taking this No resource found that matches the given name after upgrading to AppCompat v23 in android studio. So, here i have decided to post, it solution for everyone, which is helpful who faced such kind of problem in android studio.

Solution:

Your compile SDK version must match the support library's major version.
Since you are using version 23 of the support library, you need to compile against version 23 of the Android SDK.
Alternatively you can continue compiling against version 22 of the Android SDK by switching to the latest support library v22. (solution from stackoverflow)

Sometime, if not working above solution  please try this,

replace:
          compile 'com.google.android.gms:play-services:+'
to:
          compile 'com.google.android.gms:play-services:8.3.0'

and vice versa.

Then you can continue full targeting API 22

If it still doesn't compile, sometimes is useful to set compileSdkVersion API to 23 and targetSdkVersion to 22.

How to implement CSS file in Android App

Here is the simplest way to implement your CSS file in android application.

WebViews in your native Android app, to display HTML which is packaged with the app, then you can use CSS like in any HTML site.

WebVie webView=(WebView) findViewById(R.id.webViewDetials);
//webView.setBackgroundColor(0x00000000);
webView.getSettings().setJavaScriptEnabled(true);

StringBuilder sb = new StringBuilder();
sb.append("<HTML><HEAD><LINK href=\"http://google.com/css/attribute.css\" type=\"text/css\" rel=\"stylesheet\"/></HEAD><body>");
sb.append(attributes.toString());
sb.append("</body></HTML>");
webView.loadDataWithBaseURL(null, sb.toString(), "text/html", "utf-8", null);

Happy Coding!!!

Programmatically set height and width of Relative and Linear Layout in android

Are you faced to set height and width of Relative layout and Linear layout programmtically in android, here is the simple solution to set height and width of layouts.

First, we have to get height and width of screen and then do these things
 // getting screen size of mobile or tablet devices
 Display display = getWindowManager().getDefaultDisplay();
        Point size = new Point();
        display.getSize(size);
        int width = size.x;
        int height = size.y;
Or

      Display display = getWindowManager().getDefaultDisplay();
      int width = display.getWidth();
      int height = display.getHeight();

Or

     DisplayMetrics metrics = new DisplayMetrics();
     getWindowManager().getDefaultDisplay().getMetrics(metrics);

     metrics.heightPixels;
     metrics.widthPixels;



Linear Layout:
--------------

    final LinearLayout linearLeft = (LinearLayout) findViewById(R.id.left);
    LayoutParams params = linearLeft .getLayoutParams();
// Changes the height and width to the specified *pixels*
    params.width = screenWidth / 2;
 
 
Relative Layout
---------------------
    final RelativeLayout relavtiveLeft = (RelativeLayout) findViewById(R.id.right);
    LayoutParams homeLayoutsparams = relavtiveLeft .getLayoutParams();
    homeLayoutsparams.width = screenWidth / 2;

Happy coding !!!

How to make RATE APP in android

Here is the how to rate app in andorid, are you already publish app on google play then, do this in your app,

first you have to define this RateThisApp.java file in your app folder.

package co.happybirthday;

import android.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.content.DialogInterface.OnCancelListener;
import android.content.DialogInterface.OnClickListener;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.SharedPreferences.Editor;
import android.net.Uri;
import android.util.Log;

import java.util.Date;


public class RateThisApp {

    private static final String TAG = RateThisApp.class.getSimpleName();

    private static final String PREF_NAME = "RateThisApp";
    private static final String KEY_INSTALL_DATE = "rta_install_date";
    private static final String KEY_LAUNCH_TIMES = "rta_launch_times";
    private static final String KEY_OPT_OUT = "rta_opt_out";

    private static Date mInstallDate = new Date();
    private static int mLaunchTimes = 0;
    private static boolean mOptOut = false;

    private static Config sConfig = new Config();

    public static final boolean DEBUG = false;

    public static void init(Config config) {
        sConfig = config;
    }

    public static void onStart(Context context) {
        SharedPreferences pref = context.getSharedPreferences(PREF_NAME, Context.MODE_PRIVATE);
        Editor editor = pref.edit();
        // If it is the first launch, save the date in shared preference.        if (pref.getLong(KEY_INSTALL_DATE, 0) == 0L) {
            Date now = new Date();
            editor.putLong(KEY_INSTALL_DATE, now.getTime());
            log("First install: " + now.toString());
        }
        // Increment launch times        int launchTimes = pref.getInt(KEY_LAUNCH_TIMES, 0);
        launchTimes++;
        editor.putInt(KEY_LAUNCH_TIMES, launchTimes);
        log("Launch times; " + launchTimes);

        editor.commit();

        mInstallDate = new Date(pref.getLong(KEY_INSTALL_DATE, 0));
        mLaunchTimes = pref.getInt(KEY_LAUNCH_TIMES, 0);
        mOptOut = pref.getBoolean(KEY_OPT_OUT, false);

        printStatus(context);
    }

   
    public static boolean showRateDialogIfNeeded(final Context context) {
        if (shouldShowRateDialog()) {
            showRateDialog(context);
            return true;
        } else {
            return false;
        }
    }

    
    private static boolean shouldShowRateDialog() {
        if (mOptOut) {
            return false;
        } else {
            if (mLaunchTimes >= sConfig.mCriteriaLaunchTimes) {
                return true;
            }
            long threshold = sConfig.mCriteriaInstallDays * 24 * 60 * 60 * 1000L;  // msec            if (new Date().getTime() - mInstallDate.getTime() >= threshold) {
                return true;
            }
            return false;
        }
    }

    public static void showRateDialog(final Context context) {
        AlertDialog.Builder builder = new AlertDialog.Builder(context);
        int titleId = sConfig.mTitleId != 0 ? sConfig.mTitleId : R.string.rta_dialog_title;
        int messageId = sConfig.mMessageId != 0 ? sConfig.mMessageId : R.string.rta_dialog_message;
        builder.setTitle(titleId);
        builder.setMessage(messageId);
        builder.setPositiveButton(R.string.rta_dialog_ok, new OnClickListener() {
            @Override            public void onClick(DialogInterface dialog, int which) {
                String appPackage = context.getPackageName();
                Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://play.google.com/store/apps/details?id=" + appPackage));
                context.startActivity(intent);
                setOptOut(context, true);
            }
        });
        builder.setNeutralButton(R.string.rta_dialog_cancel, new OnClickListener() {
            @Override            public void onClick(DialogInterface dialog, int which) {
                clearSharedPreferences(context);
            }
        });
        builder.setNegativeButton(R.string.rta_dialog_no, new OnClickListener() {
            @Override            public void onClick(DialogInterface dialog, int which) {
                setOptOut(context, true);
            }
        });
        builder.setOnCancelListener(new OnCancelListener() {
            @Override            public void onCancel(DialogInterface dialog) {
                clearSharedPreferences(context);
            }
        });
        builder.create().show();
    }

    private static void clearSharedPreferences(Context context) {
        SharedPreferences pref = context.getSharedPreferences(PREF_NAME, Context.MODE_PRIVATE);
        Editor editor = pref.edit();
        editor.remove(KEY_INSTALL_DATE);
        editor.remove(KEY_LAUNCH_TIMES);
        editor.commit();
    }

   
    private static void setOptOut(final Context context, boolean optOut) {
        SharedPreferences pref = context.getSharedPreferences(PREF_NAME, Context.MODE_PRIVATE);
        Editor editor = pref.edit();
        editor.putBoolean(KEY_OPT_OUT, optOut);
        editor.commit();
    }

    
    private static void printStatus(final Context context) {
        SharedPreferences pref = context.getSharedPreferences(PREF_NAME, Context.MODE_PRIVATE);
        log("*** RateThisApp Status ***");
        log("Install Date: " + new Date(pref.getLong(KEY_INSTALL_DATE, 0)));
        log("Launch Times: " + pref.getInt(KEY_LAUNCH_TIMES, 0));
        log("Opt out: " + pref.getBoolean(KEY_OPT_OUT, false));
    }

   
    private static void log(String message) {
        if (DEBUG) {
            Log.v(TAG, message);
        }
    }

    
    public static class Config {
        private int mCriteriaInstallDays;
        private int mCriteriaLaunchTimes;
        private int mTitleId = 0;
        private int mMessageId = 0;

        public Config() {
            this(7, 10);
        }

       
        public Config(int criteriaInstallDays, int criteriaLaunchTimes) {
            this.mCriteriaInstallDays = criteriaInstallDays;
            this.mCriteriaLaunchTimes = criteriaLaunchTimes;
        }

        
        public void setTitle(int stringId) {
            this.mTitleId = stringId;
        }

        public void setMessage(int stringId) {
            this.mMessageId = stringId;
        }
    }
}

Now you defined required string file in string.xml file.

<string name="rta_dialog_title">Rate this app</string>
<string name="rta_dialog_message">If you enjoy using this app, would you mind taking a moment to rate it? It won\'t take more than a minute. Thank you for your support!</string>
<string name="rta_dialog_ok">Rate now</string>
<string name="rta_dialog_cancel">Later</string>
<string name="rta_dialog_no">No, thanks</string>

Finally, defined in you MainActivity.java file, when click RateApp button.

RateThisApp.showRateDialog(MainActivity.this);

then you have got like this output.

Happy Coding!!!

How to create a Cordova Project

Here is the cordova tutorials in android, how to make make full application.

Steps

  1. Make sure you have an up-to-date version of Node.js installed on your system.
  2. Open Terminal (Mac) or a Command window (Windows), and type the following command to install the Cordova CLI:
    npm install -g cordova
    
    or on a Mac:
    sudo npm install -g cordova
    
    If you already have Cordova installed on your computer, make sure you upgrade to the latest version:
    npm update -g cordova
    
    or
    sudo npm update -g cordova
    
  3. Navigate (cd) to a directory where you store projects on your file system.
  4. Using the Cordova CLI, create a Cordova project named Workshop in a directory named workshop:
    cordova create workshop com.yourname.workshop Workshop
    
  5. Navigate to the project directory:
    cd workshop
    
  6. Add support for the iOS platform (optional)
    To be able to build for the iOS platform, the iOS SDK must be installed on your system. If it's not, you can skip this step and add support for another platform, or simply run the tutorial application in your browser.
    1. Make sure the iOS SDK is available on your system.
    2. On the command line, make sure you are in the workshop directory and type:
      cordova platforms add ios
      
  7. Add support for the Android platform (optional)
    To be able to build for the Android platform, the Android SDK must be installed on your system. If it's not, you can skip this step and add support for another platform, or simply run the tutorial application in your browser.
    1. Make sure the Android SDK and the ant build tool are available on your system. The Android SDK is available here. Both the android and ant tools must be available in your path.
    2. On the command line, make sure you are in the workshop directory and type:
      cordova platforms add android
      
  8. Make sure you are in the workshop directory, and add basic plugins to your projects:
    cordova plugin add org.apache.cordova.device
    cordova plugin add org.apache.cordova.console
    
  9. Examine the directory structure under workshop.
    • The www folder is where you will code your HTML / JavaScript application. Open the index.html file in a browser to see the default application created by the Cordova CLI.
    • The platforms folder is where Cordova will build your application for different platforms (iOS, Android, etc). The contents of this folder will be automatically generated by the Cordova CLI, and you should never edit code in that directory.
    • Plugins are installed in the plugins directory.
    • Application parameters (name, author, etc) are stored in config.xml
More Cordova-tutorial