Skip to content

Instantly share code, notes, and snippets.

@vxhviet
vxhviet / halfRotatingWheel.md
Last active September 25, 2019 06:37
How to show half of a rotating wheel Android? + Reset it to original position.

Source: my own question and aswer on StackOverflow

Question: How to show only half of a roatating wheel?

Answer:

  • Simple answer for simple case we dont need to create custom imageview SOURCE.

First we would want tooverride the onDraw method of our customized ImageView to draw the image using an updated Matrix on touch event. This guarantee performance as the image doesn't get redrawn everytime.

@vxhviet
vxhviet / readPrivateField.md
Created April 14, 2016 01:41
Read a private field in Java with reflection.

Source: StackOverflow

Question: I have a poorly designed class in a 3rd-party JAR and I need to access one of its private fields. How can I do that with reflection?

public class StupidClass{
  private RectF stupidRectf;
}
@vxhviet
vxhviet / viewCreateListener.md
Last active April 15, 2016 09:07
How to know when a view is fully created ?

Source: tutsplus, StackOverflow

Question: How to know when a view fully created?

Answer:

Since we only know after measuring the layout how much space our ImageView fills, we add an OnGlobalLayoutListener. In the onGlobalLayout method, we can intercept the event that the layout has been drawn and query the size of our view.

 yourView.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
@vxhviet
vxhviet / percentageWidth.md
Created April 17, 2016 14:54
Define View width by percentage

Source: StackOverflow

Question: How to define Views width by percentage?

Answer:

You are looking for the android:layout_weight attribute. It will allow you to use percentages to define your layout.

In the following example, the left button uses 70% of the space, and the right button 30%.

@vxhviet
vxhviet / wifiConnect.md
Last active April 20, 2016 01:56
How to connect with phone for debug, build... via Wifi

Question: How to connect with phone via wifi?

Answer:

Connect the phone via usb cable.

Open text editor put in the following and save it as wifiConnect.bat:

cd C:\Users\Viet\AppData\Local\Android\sdk\platform-tools
@vxhviet
vxhviet / referenceObjInsideListener.md
Last active April 22, 2016 09:50
How to reference an object that call OnClickListener from inside the listener?

Source: StackOverflow

Question: How to access the object that call setOnClickListener() from inside the listener?

Answer:

In your onClick(View v) you can cast it to your object:

Button button = (Button) findViewById(R.id.button_id);
@vxhviet
vxhviet / LUTFilter.md
Last active November 1, 2023 18:25
How to Apply Color LUT to bitmap images for filter effects in Android?

Source: StackOverflow, StackOverflow

Question: How to Apply Color LUT to bitmap images for filter effects in Android?

Answer:

    final static int X_DEPTH = 64;
    final static int Y_DEPTH = 64; //One little square in the LUT has 64x64 pixels in it
    final static int ROW_DEPTH = 8;
@vxhviet
vxhviet / borderSelector.md
Last active April 24, 2016 15:08
How to switch selected ImageView border using selector

Source: StackOverflow, StackOverflow

Question: How to switch selected ImageViews border using selector?

Answer:

In your dimens.xml:

<resources>
@vxhviet
vxhviet / externalAAR.md
Last active April 26, 2016 04:26
How to add external AAR library to Android Studio

Question: How to add external AAR library to Android Studio?

Answer:

This work on Android Studio 2.0

File > New > New Module > Import .JAR/.AAR Package > Choose your AAR file.

Add dependency:

@vxhviet
vxhviet / refreshMediaStore.md
Created April 26, 2016 10:49
Refresh MediaStore upon adding new files in Android

Source: grokkingandroid

Question: How to refresh MediaStore upon adding new files in Android

Answer:

Visit source for additional methods.

Using the static scanFile() method