Skip to content

Instantly share code, notes, and snippets.

@null4n
null4n / gist:dd52b2890b60ddbb315de158cc72ef5e
Created January 29, 2019 05:33
Get framework boolean of navigation bar
import android.content.res.Resources;
public class Navigation {
public static void main(String[] args) {
int id = Resources.getSystem().getIdentifier("config_showNavigationBar","bool", "android");
String result = String.valueOf(Resources.getSystem().getBoolean(id));
System.out.print(result + "\n");
}
}