Get the height of status bar

Get the height of status bar - Hallo sahabat Android News, Pada Artikel yang anda baca kali ini dengan judul Get the height of status bar, kami telah mempersiapkan artikel ini dengan baik untuk anda baca dan ambil informasi didalamnya. mudah-mudahan isi postingan Artikel Android code sample: general info, yang kami tulis ini dapat anda pahami. baiklah, selamat membaca.

Judul : Get the height of status bar
link : Get the height of status bar

Baca juga


Get the height of status bar

Example to get the height of status bar, in size of pixel.



package com.blogspot.android_er.androidgetstatusbarheight;

import android.content.res.Resources;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.widget.Toast;

public class MainActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

getStatusBarHeight();
}

private int getStatusBarHeight() {
int height;

Resources myResources = getResources();
int idStatusBarHeight = myResources.getIdentifier(
"status_bar_height", "dimen", "android");
if (idStatusBarHeight > 0) {
height = getResources().getDimensionPixelSize(idStatusBarHeight);
Toast.makeText(this,
"Status Bar Height = " + height,
Toast.LENGTH_LONG).show();
}else{
height = 0;
Toast.makeText(this,
"Resources NOT found",
Toast.LENGTH_LONG).show();
}

return height;
}

}




Demikianlah Artikel Get the height of status bar

Sekianlah artikel Get the height of status bar kali ini, mudah-mudahan bisa memberi manfaat untuk anda semua. baiklah, sampai jumpa di postingan artikel lainnya.

Anda sekarang membaca artikel Get the height of status bar dengan alamat link https://androidthenews.blogspot.com/2017/02/get-height-of-status-bar.html

0 Response to "Get the height of status bar"

Posting Komentar