Sayooj Valsan
Sayooj Valsan
I need to highlight selected view , for example, using a selector . But I am not able to set selector ? I dont find any option to do it...
I am using blur view in a fragment. For example in the fragment layout, ``` ``` And in the Fragment, I do in the onActivityCreated, I use ``` mBlurringView.setBlurredView(getView().findViewById(R.id.feedList)); ```...
private byte[] stringToBytes(String string) { byte[] bytes; bytes = null; try { bytes = Base64.decode(string, Base64.DEFAULT); } catch(IllegalArgumentException e) { e.printStackTrace(); } return bytes; } Shouldn't this be - byte[]...