मुझे प्रोग्रामिक रूप से एंड्रॉइड नेविगेशन बार की ऊंचाई और चौड़ाई कैसे मिलती है?


122

एंड्रॉइड में स्क्रीन के नीचे काली नेविगेशन पट्टी आसानी से हटाने योग्य नहीं है। यह हार्डवेयर बटनों के प्रतिस्थापन के रूप में 3.0 से Android का हिस्सा रहा है। यहाँ एक तस्वीर है:

सिस्टम बार

मैं पिक्सेल में इस यूआई तत्व की चौड़ाई और ऊंचाई का आकार कैसे प्राप्त कर सकता हूं?


इस समस्या का सबसे अच्छा समाधान यहाँ जोड़ा गया है। हम प्रदर्शन मैट्रिक्स और वास्तविक मीट्रिक की तुलना करके डिवाइस में मौजूद नेविगेशन बार की पहचान कर सकते हैं। मेरा उत्तर देखें, मैंने पूरे एंड्रॉइड डिवाइसों के लिए वास्तविक नेविगेशन बार आकार का पता लगाने के लिए पूर्ण कोड जोड़ा।
चीन राज

जवाबों:


178

कोड के नीचे आज़माएं:

Resources resources = context.getResources();
int resourceId = resources.getIdentifier("navigation_bar_height", "dimen", "android");
if (resourceId > 0) {
    return resources.getDimensionPixelSize(resourceId);
}
return 0;

7
धन्यवाद। +1। क्या आप जानते हैं कि यह दृष्टिकोण कितना स्थिर है? क्या संसाधन पहचानकर्ता विभिन्न प्लेटफ़ॉर्म संस्करणों में परिवर्तन के अधीन होने जा रहे हैं?
बेन पीयरसन

59
ध्यान दें कि नेविगेशन बार के बिना डिवाइस पर कोड का यह टुकड़ा 0 वापस नहीं आता है। सैमसंग S2 और S3 पर परीक्षण किया गया। मुझे
.२

4
मेरा उत्तर में @Egidijus देखो, यह उन उपकरणों के भौतिक नेविगेशन के लिए 0 वापस आ जाएगी stackoverflow.com/a/29938139/1683141
Mdlc

1
गैलेक्सी एस 6 एज भी 0 नहीं लौटाता है, हालांकि नीचे की तरफ कोई नेविगेशन बार नहीं है। 192. लौटाता है
agamov

5
यह कोड नेविगेशन बार का डिफ़ॉल्ट आकार दिखाता है ( navigation_bar_height_landscapeलैंडस्केप मोड में नेविगेशन बार ऊंचाई के लिए भी प्रयास करें, और navigation_bar_widthऊर्ध्वाधर नेविगेशन बार की चौड़ाई के लिए)। आपको यह पता लगाना होगा कि नेविगेशन बार वास्तव में दिखा रहा है या नहीं, भौतिक मेनू बटन की उपस्थिति के लिए परीक्षण करके। हो सकता है कि आप Android souce कोड पर कुछ अन्य तरीके android.googlesource.com/platform/frameworks/base/+/…
user149408

103

मुझे वास्तविक स्क्रीन आकार के साथ ऐप-प्रयोग करने योग्य स्क्रीन आकार की तुलना करके नेविगेशन बार आकार मिलता है। मुझे लगता है कि ऐप-प्रयोग करने योग्य स्क्रीन आकार वास्तविक स्क्रीन आकार से छोटा होने पर नेविगेशन बार मौजूद है। फिर मैं नेविगेशन बार आकार की गणना करता हूं। यह विधि एपीआई 14 और ऊपर के साथ काम करती है।

public static Point getNavigationBarSize(Context context) {
    Point appUsableSize = getAppUsableScreenSize(context);
    Point realScreenSize = getRealScreenSize(context);

    // navigation bar on the side
    if (appUsableSize.x < realScreenSize.x) {
        return new Point(realScreenSize.x - appUsableSize.x, appUsableSize.y);
    }

    // navigation bar at the bottom
    if (appUsableSize.y < realScreenSize.y) {
        return new Point(appUsableSize.x, realScreenSize.y - appUsableSize.y);
    }

    // navigation bar is not present
    return new Point();
}

public static Point getAppUsableScreenSize(Context context) {
    WindowManager windowManager = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
    Display display = windowManager.getDefaultDisplay();
    Point size = new Point();
    display.getSize(size);
    return size;
}

public static Point getRealScreenSize(Context context) {
    WindowManager windowManager = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
    Display display = windowManager.getDefaultDisplay();
    Point size = new Point();

    if (Build.VERSION.SDK_INT >= 17) {
        display.getRealSize(size);
    } else if (Build.VERSION.SDK_INT >= 14) {
        try {
            size.x = (Integer) Display.class.getMethod("getRawWidth").invoke(display);
            size.y = (Integer) Display.class.getMethod("getRawHeight").invoke(display);
        } catch (IllegalAccessException e) {} catch (InvocationTargetException e) {} catch (NoSuchMethodException e) {}
    }

    return size;
}

अपडेट करें

एक समाधान के लिए जो प्रदर्शन के कटआउट को ध्यान में रखता है, कृपया जॉन के उत्तर की जांच करें ।


2
यह एकमात्र समाधान है जो मेरे द्वारा परीक्षण किए गए सभी उपकरणों के लिए काम करता है। मेरा रीज़न यह निर्धारित करने के लिए है कि क्या नेबर स्क्रीन के निचले हिस्से पर है जो खाते में ओरिएंटेशन ले रहा है। मैंने उत्तर में कोड को थोड़ा मोड़ दिया है ताकि मुझे स्क्रीन के नीचे स्थित नौसेना बार का आकार वापस मिल जाए, 0 इसके मौजूद नहीं होने का संकेत देता है। मेरा परीक्षण बताता है कि Nexus5 = पोर्ट्रेट: 144, लैंडस्केप: 0 | Nexus7 = चित्र: 96, लैंडस्केप: 96 | सैमसंग नोट II = चित्र: 0, लैंडस्केप: 0 | सैमसंग S10 = पोर्ट्रेट: 0, लैंडस्केप: 0
se22as

2
मैं यह भी पुष्टि कर सकता हूं कि डेनियल का समाधान केवल कुछ मॉडलों पर काम करता है। एगिडिजस का यह समाधान एक बेहतर कार्य समाधान है, और अब तक परीक्षण किए गए सभी मॉडलों के लिए काम किया है। इसके लिए शुक्रिया।
बिस्किट्रेट 10

2
स्टेटस बार ऐप प्रयोग करने योग्य स्क्रीन का हिस्सा है।
एगिस

1
यह काम करता है, लेकिन विचार नहीं करता है कि मौजूदा बार छिपा हुआ है या नहीं। किसी भी विचार कैसे यह जाँच करने के लिए?
X-HuMan

1
यह एंड्रॉइड P के लिए काम नहीं कर रहा है जबकि नेविगेशन बार के बजाय नेविगेशन जेस्चर पर है। क्या आप कृपया मुझे इस स्थिति के लिए हल करने के लिए मार्गदर्शन कर सकते हैं
निक

36

नेवीगेशनबार की ऊंचाई कुछ उपकरणों के लिए भिन्न होती है, लेकिन साथ ही कुछ झुकावों के लिए भी। पहले आपको यह जांचना होगा कि डिवाइस में नावबार है या नहीं, अगर डिवाइस टैबलेट है या नहीं-टैबलेट (फोन) और अंत में आपको सही ऊंचाई पाने के लिए डिवाइस के ओरिएंटेशन को देखना होगा।

public int getNavBarHeight(Context c) {
         int result = 0;
         boolean hasMenuKey = ViewConfiguration.get(c).hasPermanentMenuKey();
         boolean hasBackKey = KeyCharacterMap.deviceHasKey(KeyEvent.KEYCODE_BACK);

         if(!hasMenuKey && !hasBackKey) {
             //The device has a navigation bar
             Resources resources = c.getResources();

             int orientation = resources.getConfiguration().orientation;
             int resourceId;
             if (isTablet(c)){
                 resourceId = resources.getIdentifier(orientation == Configuration.ORIENTATION_PORTRAIT ? "navigation_bar_height" : "navigation_bar_height_landscape", "dimen", "android");
             }  else {
                 resourceId = resources.getIdentifier(orientation == Configuration.ORIENTATION_PORTRAIT ? "navigation_bar_height" : "navigation_bar_width", "dimen", "android");     
             }

             if (resourceId > 0) {
                 return resources.getDimensionPixelSize(resourceId);
             }
         }
         return result;
} 


private boolean isTablet(Context c) {
    return (c.getResources().getConfiguration().screenLayout
            & Configuration.SCREENLAYOUT_SIZE_MASK)
            >= Configuration.SCREENLAYOUT_SIZE_LARGE;
}

यह मेरे लिए काम नहीं करता है, Nexus5 hasMenuKey और hasBackKey के लिए सही है, इसलिए यह सोचता है कि कोई नावबार नहीं है। (Nexus7 hasMenuKey और hasBackKey के लिए सही रिटर्न देता है)
se22as

5
मैंने नेक्सस 5 पर इस कोड का परीक्षण किया है, और यह दोनों के लिए गलत है। क्या आप वाकई किसी एमुलेटर या रोम पर नहीं हैं?
Mdlc

हाँ, मैं एक एमुलेटर का उपयोग कर रहा था, क्षमा करें मुझे पहले अपने बयान में स्पष्ट करना चाहिए था
se22as

यह नहीं होना चाहिए! ! hasBackKey के बजाय! hasMenuKey &&! hasBackKey कृपया सत्यापित करें
yongsunCN

2
दुर्भाग्य से, यह सोनी एक्सपीरिया जेड 3 पर काम नहीं करता है, hasBackKey = false!हालांकि यह सच होना चाहिए। इसके बजाय निम्नलिखित कार्य किया गया: boolean navBarExists = getResources().getBoolean(getResources().getIdentifier("config_showNavigationBar", "bool", "android"));
हमज़ेह सोबोह

27

वास्तव में टैबलेट्स पर नेविगेशन बार (कम से कम नेक्सस 7) के चित्र और परिदृश्य में अलग-अलग आकार हैं, इसलिए इस फ़ंक्शन को इस तरह दिखना चाहिए:

private int getNavigationBarHeight(Context context, int orientation) {
    Resources resources = context.getResources();

    int id = resources.getIdentifier(
            orientation == Configuration.ORIENTATION_PORTRAIT ? "navigation_bar_height" : "navigation_bar_height_landscape",
            "dimen", "android");
    if (id > 0) {
        return resources.getDimensionPixelSize(id);
    }
    return 0;
}

6
संदर्भ से अभिविन्यास प्राप्त करने के लिए, उपयोग करेंcontext.getResources().getConfiguration().orientation
ह्यूगो ग्रेस

इस समस्या का सबसे अच्छा समाधान यहाँ जोड़ा गया है। हम प्रदर्शन मैट्रिक्स और वास्तविक मीट्रिक की तुलना करके डिवाइस में मौजूद नेविगेशन बार की पहचान कर सकते हैं। मेरा उत्तर देखें, मैंने पूरे एंड्रॉइड डिवाइसों के लिए वास्तविक नेविगेशन बार आकार का पता लगाने के लिए पूर्ण कोड जोड़ा।
चीन राज

17

मुझे लगता है कि बेहतर उत्तर यहां है क्योंकि यह आपको कटआउट ऊंचाई भी प्राप्त करने की अनुमति देता है।

अपना मूल दृश्य लें, और setOnApplyWindowInsetsListener जोड़ें (या आप इसमें से onApplyWindowInsets को ओवरराइड कर सकते हैं), और इससे insets.getSystemWindowInsets लें।

मेरी कैमरा गतिविधि में, मैं अपने निचले लेआउट में systemWindowInsetBottom के बराबर पैडिंग जोड़ता हूं। और अंत में, यह कटआउट समस्या को ठीक करता है।

कैमरा गतिविधि इनसेट

appcompat के साथ यह इस तरह है

ViewCompat.setOnApplyWindowInsetsListener(mCameraSourcePreview, (v, insets) -> {
    takePictureLayout.setPadding(0,0,0,insets.getSystemWindowInsetBottom());
    return insets.consumeSystemWindowInsets();
});

Appcompat के बिना, यह:

mCameraSourcePreview.setOnApplyWindowInsetsListener((v, insets) -> { ... })

क्या इसके setOnApplyWindowInsetsListenerबजाय उपयोग करना संभव है ? यदि हां, तो कैसे? और आपने लॉलीपॉप और बाकी के बीच अंतर क्यों किया?
Android डेवलपर

हाँ, यह संभव है, और इसके बेहतर हैं। मैं जवाब ठीक कर दूँगा। और अंतर की भी जरूरत नहीं है
जॉन

1
यह सबसे अच्छा जवाब है। मैं सचमुच तुमसे प्यार करता हूँ।
हिमांशु रावत

1
यही असली जवाब है।
साइकिल चलाना

1
जब मैं onCreate () से कॉल करता हूं तो श्रोता को कभी भी निष्पादित नहीं किया जाता है। क्या मैं कुछ भूल रहा हूँ?
Howettl

12

मैं आशा करता हूं कि इससे तुम्हें सहायता मिलेगी

public int getStatusBarHeight() {
    int result = 0;
    int resourceId = getResources().getIdentifier("status_bar_height", "dimen", "android");
    if (resourceId > 0) {
        result = getResources().getDimensionPixelSize(resourceId);
    }
    return result;
}

public int getNavigationBarHeight()
{
    boolean hasMenuKey = ViewConfiguration.get(context).hasPermanentMenuKey();
    int resourceId = getResources().getIdentifier("navigation_bar_height", "dimen", "android");
    if (resourceId > 0 && !hasMenuKey)
    {
        return getResources().getDimensionPixelSize(resourceId);
    }
    return 0;
}

5

नेविगेशन बार को चकमा देने के लिए paddingRight और paddingBottom को एक व्यू में जोड़ने के लिए यह मेरा कोड है। मैंने यहाँ कुछ उत्तरों को संयोजित किया और isInMultiWindowMode के साथ मिलकर परिदृश्य अभिविन्यास के लिए एक विशेष खंड बनाया। नेविगेशन_बार_हाइट पढ़ना महत्वपूर्ण है , लेकिन यह भी सुनिश्चित करने के लिए config_showNavigationBar की जांच करें कि हमें वास्तव में ऊंचाई का उपयोग करना चाहिए।

पिछले समाधानों में से किसी ने भी मेरे लिए काम नहीं किया। Android 7.0 तक आपको मल्टी विंडो मोड को ध्यान में रखना होगा। यह प्रदर्शन की तुलना करने वाले कार्यान्वयन को तोड़ता है । डिस्प्ले के साथ ही साइन अप करें वास्तविक के बाद से आप पूरी स्क्रीन (दोनों विभाजित विंडो) के आयाम देते हैं और आकार आपको केवल आपके ऐप विंडो के आयाम देता है। पैडिंग को इस अंतर पर सेट करने से आपका पूरा दृश्य पैडिंग हो जाएगा।

/** Adds padding to a view to dodge the navigation bar.

    Unfortunately something like this needs to be done since there
    are no attr or dimens value available to get the navigation bar
    height (as of December 2016). */
public static void addNavigationBarPadding(Activity context, View v) {
    Resources resources = context.getResources();
    if (hasNavigationBar(resources)) {
        int orientation = resources.getConfiguration().orientation;
        int size = getNavigationBarSize(resources);
        switch (orientation) {
        case Configuration.ORIENTATION_LANDSCAPE:
            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N &&
                context.isInMultiWindowMode()) { break; }
            v.setPadding(v.getPaddingLeft(), v.getPaddingTop(),
                         v.getPaddingRight() + size, v.getPaddingBottom());
            break;
        case Configuration.ORIENTATION_PORTRAIT:
            v.setPadding(v.getPaddingLeft(), v.getPaddingTop(),
                         v.getPaddingRight(), v.getPaddingBottom() + size);
            break;
        }
    }
}

private static int getNavigationBarSize(Resources resources) {
    int resourceId = resources.getIdentifier("navigation_bar_height",
                                             "dimen", "android");
    return resourceId > 0 ? resources.getDimensionPixelSize(resourceId) : 0;
}

private static boolean hasNavigationBar(Resources resources) {
    int hasNavBarId = resources.getIdentifier("config_showNavigationBar",
                                              "bool", "android");
    return hasNavBarId > 0 && resources.getBoolean(hasNavBarId);
}

1

नीचे नेविगेशन बार की ऊंचाई 48dp (पोर्ट्रेट और लैंडस्केप मोड दोनों में) है और 42dp है जब बार को लंबवत रखा गया है।


4
ऊंचाई NORMALLY 48dp है। लेकिन कुछ निर्माता इसे बदल सकते हैं, कुछ कस्टम रॉम इसे बदल सकते हैं, और इसी तरह। यह Danylo जवाब ( stackoverflow.com/a/26118045/1377145 ) पर सटीक आकार के लिए भरोसा करने के लिए बेहतर है
ह्यूगो Gresse

वह तो उससे भी बढ़िया है। धन्यवाद।
अरित्र रॉय

लंबवत रखा गया? जैसे कि यह लैंडस्केप मोड में कब है?
सुडोकुडर

1

Egidijus द्वारा प्रस्तावित समाधान और Build.VERSION.SDK_INT> = 17 के लिए पूरी तरह से काम करता है

लेकिन मुझे अपने डिवाइस पर Build.VERSION.SDK_INT <17 के साथ निम्नलिखित कथन के निष्पादन के दौरान "NoSuchMethodException" मिली:

Display.class.getMethod("getRawHeight").invoke(display);

मैंने ऐसे मामलों के लिए विधि getRealScreenSize () को संशोधित किया है:

else if(Build.VERSION.SDK_INT >= 14) 
{
    View decorView = getActivity().getWindow().getDecorView();
    size.x = decorView.getWidth();
    size.y = decorView.getHeight();
}

1

मैंने सभी डिवाइस (नेक्सस 5, सैमसंग गैलेक्सी नेक्सस 6 एज +, सैमसंग एस 10, सैमसंग नोट II आदि) के लिए इस मुद्दे को हल किया। मुझे लगता है कि इससे आपको डिवाइस निर्भर मुद्दों को संभालने में मदद मिलेगी।

यहाँ मैं दो प्रकार के कोड जोड़ रहा हूँ,

जावा कोड (मूल निवासी Android के लिए):

import android.content.Context;
import android.content.res.Resources;
import android.os.Build;
import android.util.DisplayMetrics;
import android.view.Display;
import android.view.ViewConfiguration;
import android.view.WindowManager;

public class DeviceSpec {

    private int resourceID = -1;
    private Display display = null;
    private DisplayMetrics displayMetrics = null;
    private DisplayMetrics realDisplayMetrics = null;
    private Resources resources = null;
    private WindowManager windowManager = null;

    public double GetNavigationBarHeight(Context context) {
        try {
            windowManager = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
            display = windowManager.getDefaultDisplay();
            displayMetrics = new DisplayMetrics();
            if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.ICE_CREAM_SANDWICH_MR1) {
                realDisplayMetrics = new DisplayMetrics();
                display.getMetrics(displayMetrics);
                display.getRealMetrics(realDisplayMetrics);
                if(displayMetrics.heightPixels != realDisplayMetrics.heightPixels) {
                    resources = context.getResources();
                    return GetNavigationBarSize(context);
                }
            }
            else {
                resources = context.getResources();
                resourceID = resources.getIdentifier("config_showNavigationBar", "bool", "android");
                if (resourceID > 0 && resources.getBoolean(resourceID))
                    return GetNavigationBarSize(context);
            }
        }
        catch (Exception e){
            e.printStackTrace();
        }
        return 0;
    }

    private double GetNavigationBarSize(Context context) {
        resourceID = resources.getIdentifier("navigation_bar_height", "dimen", "android");
        if (resourceID > 0 && ViewConfiguration.get(context).hasPermanentMenuKey())
           return (resources.getDimensionPixelSize(resourceID) / displayMetrics.density);
        return 0;
    }
}

और सी # कोड (ज़ामरीन फॉर्म / एंड्रॉइड के लिए)

int resourceId = -1;
        IWindowManager windowManager = null;
        Display defaultDisplay = null;
        DisplayMetrics displayMatrics = null;
        DisplayMetrics realMatrics = null;
        Resources resources = null;

        public double NavigationBarHeight
        {
            get
            {
                try
                {
                    windowManager = Forms.Context.GetSystemService(Context.WindowService).JavaCast<IWindowManager>();
                    defaultDisplay = windowManager.DefaultDisplay;
                    displayMatrics = new DisplayMetrics();
                    if (Build.VERSION.SdkInt >= BuildVersionCodes.JellyBeanMr2)
                    {
                        realMatrics = new DisplayMetrics();
                        defaultDisplay.GetMetrics(displayMatrics);
                        defaultDisplay.GetRealMetrics(realMatrics);
                        if (displayMatrics.HeightPixels != realMatrics.HeightPixels)
                        {
                            resources = Forms.Context.Resources;
                            return GetHeightOfNivigationBar();
                        }
                    }
                    else {
                        resources = Forms.Context.Resources;
                        resourceId = resources.GetIdentifier("config_showNavigationBar", "bool", "android");
                        if (resourceId > 0 && resources.GetBoolean(resourceId))
                            return GetHeightOfNivigationBar();
                    }
                }
                catch (Exception e) { }
                return 0;
            }
        }

        private double GetHeightOfNivigationBar()
        {
            resourceId = resources.GetIdentifier("navigation_bar_height", "dimen", "android");
            if (!ViewConfiguration.Get(Forms.Context).HasPermanentMenuKey && resourceId > 0)
            {
                return resources.GetDimensionPixelSize(resourceId) / displayMatrics.Density;
            }
            return 0;
        }

Display.getRealMetrics()एपीआई स्तर 17 की आवश्यकता है
Weizhi

if (Build.VERSION.SdkInt> = BuildVersionCodes.JellyBeanMr2) पहले से ही जांचा जा चुका है।
चीन राज

कोड को ठीक करने की आवश्यकता है। मेरे एलजी Nexus 5X के कारण 0.0 मिल जाएगा: [1] जब screenOrientationडिफ़ॉल्ट है, hasPermanentMenuKeyहै falseकेवल घुमाने नहीं है। [२] जब screenOrientationपरिदृश्य होता है, तो यह और गिर जाता displayMetrics.heightPixels != realDisplayMetrics.heightPixels)है। [3] जब screenOrientationचित्र है, hasPermanentMenuKeyहै false
फल

यह काम करता है, लेकिन 4.x पर अगर (हैपरमानेंटेनयूके) बेकार है, तो टिप्पणी करें
djdance

आपकी स्थिति यदि (Build.VERSION.SDK_INT> = Build.VERSION_CODES.JELLY_BEAN_MR1) होनी चाहिए। सार्वजनिक शून्य getRealMetrics (DisplayMetrics outMetrics) करने के लिए API 17 आवश्यक है। डॉक्स देखें: developer.android.com/reference/kotlin/android/util/…
portfoliobuilder

1

@Egis और अन्य लोगों के उत्तर का संयोजन - यह पिक्सेल EMU, Samsung S6, Sony Z3, Nexus 4 पर परीक्षण किए गए विभिन्न उपकरणों पर अच्छी तरह से काम करता है। यह कोड नेव बार की उपलब्धता के लिए परीक्षण आयामों का उपयोग करता है और फिर वास्तविक का उपयोग करता है यदि मौजूद हो तो सिस्टम नेवी बार साइज़।

/**
 * Calculates the system navigation bar size.
 */

public final class NavigationBarSize {

	private final int systemNavBarHeight;
	@NonNull
	private final Point navBarSize;

	public NavigationBarSize(@NonNull Context context) {
		Resources resources = context.getResources();
		int displayOrientation = resources.getConfiguration().orientation;
		final String name;
		switch (displayOrientation) {
			case Configuration.ORIENTATION_PORTRAIT:
				name = "navigation_bar_height";
				break;
			default:
				name = "navigation_bar_height_landscape";
		}
		int id = resources.getIdentifier(name, "dimen", "android");
		systemNavBarHeight = id > 0 ? resources.getDimensionPixelSize(id) : 0;
		navBarSize = getNavigationBarSize(context);
	}

	public void adjustBottomPadding(@NonNull View view, @DimenRes int defaultHeight) {
		int height = 0;
		if (navBarSize.y > 0) {
			// the device has a nav bar, get the correct size from the system
			height = systemNavBarHeight;
		}
		if (height == 0) {
			// fallback to default
			height = view.getContext().getResources().getDimensionPixelSize(defaultHeight);
		}
		view.setPadding(0, 0, 0, height);
	}

	@NonNull
	private static Point getNavigationBarSize(@NonNull Context context) {
		Point appUsableSize = new Point();
		Point realScreenSize = new Point();
		WindowManager windowManager = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
		if (windowManager != null) {
			Display display = windowManager.getDefaultDisplay();
			display.getSize(appUsableSize);
			display.getRealSize(realScreenSize);
		}
		return new Point(realScreenSize.x - appUsableSize.x, realScreenSize.y - appUsableSize.y);
	}

}


अगर मैं प्रोग्रामव्यू की ऊंचाई को स्क्रीन के उपयोग के निचले हिस्से में प्रोग्राम करना चाहता हूं, तो मैं इस क्लास का उपयोग कैसे करूंगा?
नवेद अब्बास

1

नेविगेशन बार और स्टेटस बार की ऊंचाई कैसे प्राप्त करें। यह कोड कुछ Huawei डिवाइस और सैमसंग डिवाइस पर मेरे लिए काम करता है । ऊपर एगिस का समाधान अच्छा है, हालांकि, यह अभी भी कुछ उपकरणों पर गलत है। इसलिए, मैंने इसमें सुधार किया।

यह स्टेटस बार की ऊंचाई पाने के लिए कोड है

private fun getStatusBarHeight(resources: Resources): Int {
        var result = 0
        val resourceId = resources.getIdentifier("status_bar_height", "dimen", "android")
        if (resourceId > 0) {
            result = resources.getDimensionPixelSize(resourceId)
        }
        return result
    }

यह तरीका हमेशा नेविगेशन बार के छिपे होने पर भी नेविगेशन बार की ऊंचाई देता है।

private fun getNavigationBarHeight(resources: Resources): Int {
    val resourceId = resources.getIdentifier("navigation_bar_height", "dimen", "android")
    return if (resourceId > 0) {
        resources.getDimensionPixelSize(resourceId)
    } else 0
}

नोट: सैमसंग A70 पर, यह विधि नेविगेशन बार की स्थिति बार + ऊँचाई की ऊंचाई लौटाती है। अन्य उपकरणों (हुआवेई) पर, यह केवल नेविगेशन बार की ऊंचाई देता है और नेविगेशन बार के छिपे होने पर 0 देता है।

private fun getNavigationBarHeight(): Int {
        val display = activity?.windowManager?.defaultDisplay
        return if (display == null) {
            0
        } else {
            val realMetrics = DisplayMetrics()
            display.getRealMetrics(realMetrics)
            val metrics = DisplayMetrics()
            display.getMetrics(metrics)
            realMetrics.heightPixels - metrics.heightPixels
        }
    }

यह नेविगेशन बार और स्टेटस बार की ऊंचाई पाने के लिए कोड है

val metrics = DisplayMetrics()
        activity?.windowManager?.defaultDisplay?.getRealMetrics(metrics)

        //resources is got from activity

        //NOTE: on SamSung A70, this height = height of status bar + height of Navigation bar
        //On other devices (Huawei), this height = height of Navigation bar
        val navigationBarHeightOrNavigationBarPlusStatusBarHeight = getNavigationBarHeight()

        val statusBarHeight = getStatusBarHeight(resources)
        //The method will always return the height of navigation bar even when the navigation bar was hidden.
        val realNavigationBarHeight = getNavigationBarHeight(resources)

        val realHeightOfStatusBarAndNavigationBar =
                if (navigationBarHeightOrNavigationBarPlusStatusBarHeight == 0 || navigationBarHeightOrNavigationBarPlusStatusBarHeight < statusBarHeight) {
                    //Huawei: navigation bar is hidden
                    statusBarHeight
                } else if (navigationBarHeightOrNavigationBarPlusStatusBarHeight == realNavigationBarHeight) {
                    //Huawei: navigation bar is visible
                    statusBarHeight + realNavigationBarHeight
                } else if (navigationBarHeightOrNavigationBarPlusStatusBarHeight < realNavigationBarHeight) {
                    //SamSung A70: navigation bar is still visible but it only displays as a under line
                    //navigationBarHeightOrNavigationBarPlusStatusBarHeight = navigationBarHeight'(under line) + statusBarHeight
                    navigationBarHeightOrNavigationBarPlusStatusBarHeight
                } else {
                    //SamSung A70: navigation bar is visible
                    //navigationBarHeightOrNavigationBarPlusStatusBarHeight == statusBarHeight + realNavigationBarHeight
                    navigationBarHeightOrNavigationBarPlusStatusBarHeight
                }

1

मैंने ऐसा किया है, यह मेरे द्वारा परीक्षण किए गए प्रत्येक डिवाइस पर काम करता है, और एमुलेटर पर भी:

// Return the NavigationBar height in pixels if it is present, otherwise return 0
public static int getNavigationBarHeight(Activity activity) {
    Rect rectangle = new Rect();
    DisplayMetrics displayMetrics = new DisplayMetrics();
    activity.getWindow().getDecorView().getWindowVisibleDisplayFrame(rectangle);
    activity.getWindowManager().getDefaultDisplay().getRealMetrics(displayMetrics);
    return displayMetrics.heightPixels - (rectangle.top + rectangle.height());
}

0

यहाँ है कि मैं यह कैसे हल किया। मैंने एक हाईडरेबल बॉटम बार बनाया, जिसमें नेविगेशन बार या कैपेसिटिव (ऑन-स्क्रीन या सिर्फ प्री लॉलीपॉप) के आधार पर पैडिंग की जरूरत थी।


राय

setPadding(0, 0, 0, Utils.hasNavBar(getContext()) ? 30 : 0);

Utils.java

public static boolean hasNavBar(Context context) {
    // Kitkat and less shows container above nav bar
    if (android.os.Build.VERSION.SDK_INT <= Build.VERSION_CODES.KITKAT) {
        return false;
    }
    // Emulator
    if (Build.FINGERPRINT.startsWith("generic")) {
        return true;
    }
    boolean hasMenuKey = ViewConfiguration.get(context).hasPermanentMenuKey();
    boolean hasBackKey = KeyCharacterMap.deviceHasKey(KeyEvent.KEYCODE_BACK);
    boolean hasNoCapacitiveKeys = !hasMenuKey && !hasBackKey;
    Resources resources = context.getResources();
    int id = resources.getIdentifier("config_showNavigationBar", "bool", "android");
    boolean hasOnScreenNavBar = id > 0 && resources.getBoolean(id);
    return hasOnScreenNavBar || hasNoCapacitiveKeys || getNavigationBarHeight(context, true) > 0;
}

public static int getNavigationBarHeight(Context context, boolean skipRequirement) {
    int resourceId = context.getResources().getIdentifier("navigation_bar_height", "dimen", "android");
    if (resourceId > 0 && (skipRequirement || hasNavBar(context))) {
        return context.getResources().getDimensionPixelSize(resourceId);
    }
    return 0;
}

0

मेरे मामले में जहां मैं कुछ इस तरह से होना चाहता था:

स्क्रीनशॉट

मुझे @Mdlc द्वारा सुझाई गई उसी चीज़ का अनुसरण करना था, लेकिन शायद थोड़ा सरल हो ( केवल लक्ष्यीकरण = = 21):

    //kotlin
    val windowManager = getSystemService(Context.WINDOW_SERVICE) as WindowManager
    val realSize = Point()
    windowManager.defaultDisplay.getRealSize(realSize);
    val usableRect = Rect()
    windowManager.defaultDisplay.getRectSize(usableRect)
    Toast.makeText(this, "Usable Screen: " + usableRect + " real:"+realSize, Toast.LENGTH_LONG).show()

    window.decorView.setPadding(usableRect.left, usableRect.top, realSize.x - usableRect.right, realSize.y - usableRect.bottom)

यह परिदृश्य पर भी काम करता है:

परिदृश्य

संपादित करें उपरोक्त समाधान मल्टी-विंडो मोड में सही तरीके से काम नहीं करता है जहां उपयोग योग्य आयत सिर्फ नेविगेशन बार के कारण छोटा नहीं है, बल्कि कस्टम विंडो आकार के कारण भी है। एक बात जो मैंने देखी, वह यह है कि मल्टी-विंडो में नेविगेशन बार ऐप पर नहीं मंडरा रहा है, यहां तक ​​कि डेकोरव्यू पैडिंग में कोई बदलाव नहीं होने के कारण हमारे पास सही व्यवहार है:

मल्टी-विंडो जिसमें डेकोर व्यूइंग डैकोरेशन के लिए कोई बदलाव नहीं है सिंगल-विंडो जिसमें डेकोर पेडिंग व्यू में कोई बदलाव नहीं किया गया है

नेविगेशन बार इन परिदृश्यों में ऐप के निचले भाग में कैसे घूम रहा है, इस पर ध्यान दें। सौभाग्य से, यह तय करना आसान है। हम जाँच सकते हैं कि ऐप मल्टी विंडो है या नहीं। नीचे दिए गए कोड में टूलबार की स्थिति की गणना करने और समायोजित करने का हिस्सा भी शामिल है (पूर्ण समाधान: https://stackoverflow.com/a/14213035/477790 )

    // kotlin
    // Let the window flow into where window decorations are
    window.addFlags(WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN)
    window.addFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS)

    // calculate where the bottom of the page should end up, considering the navigation bar (back buttons, ...)
    val windowManager = getSystemService(Context.WINDOW_SERVICE) as WindowManager
    val realSize = Point()
    windowManager.defaultDisplay.getRealSize(realSize);
    val usableRect = Rect()
    windowManager.defaultDisplay.getRectSize(usableRect)
    Toast.makeText(this, "Usable Screen: " + usableRect + " real:" + realSize, Toast.LENGTH_LONG).show()

    if (Build.VERSION.SDK_INT < Build.VERSION_CODES.N || !isInMultiWindowMode) {
        window.decorView.setPadding(usableRect.left, usableRect.top, realSize.x - usableRect.right, realSize.y - usableRect.bottom)
        // move toolbar/appbar further down to where it should be and not to overlap with status bar
        val layoutParams = ConstraintLayout.LayoutParams(appBarLayout.layoutParams as ConstraintLayout.LayoutParams)
        layoutParams.topMargin = getSystemSize(Constants.statusBarHeightKey)
        appBarLayout.layoutParams = layoutParams
    }

सैमसंग पॉपअप मोड पर परिणाम:

यहां छवि विवरण दर्ज करें


0

नेविगेशन बार की ऊँचाई पाने के लिए परीक्षण किया गया कोड (पिक्सेल में):

public static int getNavBarHeight(Context c) {
    int resourceId = c.getResources()
                      .getIdentifier("navigation_bar_height", "dimen", "android");
    if (resourceId > 0) {
        return c.getResources().getDimensionPixelSize(resourceId);
    }
    return 0;
}

स्थिति बार की ऊंचाई पाने के लिए परीक्षण किया गया कोड (पिक्सेल में):

public static int getStatusBarHeight(Context c) {
    int resourceId = c.getResources()
                      .getIdentifier("status_bar_height", "dimen", "android");
    if (resourceId > 0) {
        return c.getResources().getDimensionPixelSize(resourceId);
    }
    return 0;
}

पिक्सेल को dp में बदलना:

public static int pxToDp(int px) {
    return (int) (px / Resources.getSystem().getDisplayMetrics().density);
}

0

सैमसंग S8 के मामले में उपरोक्त प्रदान किए गए तरीकों में से कोई भी नेविगेशन बार की उचित ऊंचाई नहीं दे रहा था इसलिए मैंने कीबोर्डहाइटप्रोवाइडर कीबोर्ड ऊंचाई प्रदाता एंड्रॉइड का उपयोग किया । और इसने मुझे नकारात्मक मूल्यों में ऊँचाई दी और मेरे लेआउट स्थिति के लिए मैंने गणना में उस मूल्य को समायोजित किया।

यहाँ है KeyboardHeightProvider.java:

import android.app.Activity;
import android.content.res.Configuration;
import android.graphics.Point;
import android.graphics.Rect;
import android.graphics.drawable.ColorDrawable;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewTreeObserver.OnGlobalLayoutListener;
import android.view.WindowManager.LayoutParams;
import android.widget.PopupWindow;


/**
 * The keyboard height provider, this class uses a PopupWindow
 * to calculate the window height when the floating keyboard is opened and closed. 
 */
public class KeyboardHeightProvider extends PopupWindow {

    /** The tag for logging purposes */
    private final static String TAG = "sample_KeyboardHeightProvider";

    /** The keyboard height observer */
    private KeyboardHeightObserver observer;

    /** The cached landscape height of the keyboard */
    private int keyboardLandscapeHeight;

    /** The cached portrait height of the keyboard */
    private int keyboardPortraitHeight;

    /** The view that is used to calculate the keyboard height */
    private View popupView;

    /** The parent view */
    private View parentView;

    /** The root activity that uses this KeyboardHeightProvider */
    private Activity activity;

    /** 
     * Construct a new KeyboardHeightProvider
     * 
     * @param activity The parent activity
     */
    public KeyboardHeightProvider(Activity activity) {
        super(activity);
        this.activity = activity;

        LayoutInflater inflator = (LayoutInflater) activity.getSystemService(Activity.LAYOUT_INFLATER_SERVICE);
        this.popupView = inflator.inflate(R.layout.popupwindow, null, false);
        setContentView(popupView);

        setSoftInputMode(LayoutParams.SOFT_INPUT_ADJUST_RESIZE | LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
        setInputMethodMode(PopupWindow.INPUT_METHOD_NEEDED);

        parentView = activity.findViewById(android.R.id.content);

        setWidth(0);
        setHeight(LayoutParams.MATCH_PARENT);

        popupView.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener() {

                @Override
                public void onGlobalLayout() {
                    if (popupView != null) {
                        handleOnGlobalLayout();
                    }
                }
            });
    }

    /**
     * Start the KeyboardHeightProvider, this must be called after the onResume of the Activity.
     * PopupWindows are not allowed to be registered before the onResume has finished
     * of the Activity.
     */
    public void start() {

        if (!isShowing() && parentView.getWindowToken() != null) {
            setBackgroundDrawable(new ColorDrawable(0));
            showAtLocation(parentView, Gravity.NO_GRAVITY, 0, 0);
        }
    }

    /**
     * Close the keyboard height provider, 
     * this provider will not be used anymore.
     */
    public void close() {
        this.observer = null;
        dismiss();
    }

    /** 
     * Set the keyboard height observer to this provider. The 
     * observer will be notified when the keyboard height has changed. 
     * For example when the keyboard is opened or closed.
     * 
     * @param observer The observer to be added to this provider.
     */
    public void setKeyboardHeightObserver(KeyboardHeightObserver observer) {
        this.observer = observer;
    }

    /**
     * Get the screen orientation
     *
     * @return the screen orientation
     */
    private int getScreenOrientation() {
        return activity.getResources().getConfiguration().orientation;
    }

    /**
     * Popup window itself is as big as the window of the Activity. 
     * The keyboard can then be calculated by extracting the popup view bottom 
     * from the activity window height. 
     */
    private void handleOnGlobalLayout() {

        Point screenSize = new Point();
        activity.getWindowManager().getDefaultDisplay().getSize(screenSize);

        Rect rect = new Rect();
        popupView.getWindowVisibleDisplayFrame(rect);

        // REMIND, you may like to change this using the fullscreen size of the phone
        // and also using the status bar and navigation bar heights of the phone to calculate
        // the keyboard height. But this worked fine on a Nexus.
        int orientation = getScreenOrientation();
        int keyboardHeight = screenSize.y - rect.bottom;

        if (keyboardHeight == 0) {
            notifyKeyboardHeightChanged(0, orientation);
        }
        else if (orientation == Configuration.ORIENTATION_PORTRAIT) {
            this.keyboardPortraitHeight = keyboardHeight; 
            notifyKeyboardHeightChanged(keyboardPortraitHeight, orientation);
        } 
        else {
            this.keyboardLandscapeHeight = keyboardHeight; 
            notifyKeyboardHeightChanged(keyboardLandscapeHeight, orientation);
        }
    }

    /**
     *
     */
    private void notifyKeyboardHeightChanged(int height, int orientation) {
        if (observer != null) {
            observer.onKeyboardHeightChanged(height, orientation);
        }
    }

    public interface KeyboardHeightObserver {
        void onKeyboardHeightChanged(int height, int orientation);
    }
}

popupwindow.xml :

<?xml version="1.0" encoding="utf-8"?>
<View
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/popuplayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/transparent"
    android:orientation="horizontal"/>

में उपयोग MainActivity

import android.os.Bundle
import android.support.v7.app.AppCompatActivity
import kotlinx.android.synthetic.main.activity_main.*

/**
 * Created by nileshdeokar on 22/02/2018.
 */
class MainActivity : AppCompatActivity() , KeyboardHeightProvider.KeyboardHeightObserver  {

    private lateinit var keyboardHeightProvider : KeyboardHeightProvider


    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)

        keyboardHeightProvider = KeyboardHeightProvider(this)
        parentActivityView.post { keyboardHeightProvider?.start() }
    }

    override fun onKeyboardHeightChanged(height: Int, orientation: Int) {
        // In case of 18:9 - e.g. Samsung S8
        // here you get the height of the navigation bar as negative value when keyboard is closed.
        // and some positive integer when keyboard is opened.
    }

    public override fun onPause() {
        super.onPause()
        keyboardHeightProvider?.setKeyboardHeightObserver(null)
    }

    public override fun onResume() {
        super.onResume()
        keyboardHeightProvider?.setKeyboardHeightObserver(this)
    }

    public override fun onDestroy() {
        super.onDestroy()
        keyboardHeightProvider?.close()
    }
}

किसी भी आगे की मदद के लिए आप इस के उन्नत उपयोग पर एक नज़र हो सकता है यहाँ


0

सरल एक-लाइन समाधान

जैसा कि ऊपर दिए गए कई उत्तरों में बताया गया है, उदाहरण के लिए

बस नेविगेशन बार ऊंचाई प्राप्त करना पर्याप्त नहीं हो सकता है। हमें यह विचार करने की आवश्यकता है कि क्या 1. नेविगेशन बार मौजूद है, 2. क्या यह नीचे या दाएं या बाएं तरफ है, 3. मल्टी-विंडो मोड में ऐप खुला है।

सौभाग्य से आप आसानी से android:fitsSystemWindows="true"अपने रूट लेआउट में सेटिंग करके सभी लंबे कोडिंग को आसानी से बायपास कर सकते हैं । एंड्रॉइड सिस्टम स्वचालित रूप से यह सुनिश्चित करने के लिए रूट लेआउट में आवश्यक पैडिंग जोड़ने का ध्यान रखेगा कि बच्चे के विचार नेविगेशन बार या स्थिति पट्टी क्षेत्रों में नहीं आते हैं।

एक सरल एक पंक्ति समाधान है

android:fitsSystemWindows="true"

या प्रोग्रामिक रूप से

findViewById(R.id.your_root_view).setFitsSystemWindows(true);

आप मूल दृश्य भी प्राप्त कर सकते हैं

findViewById(android.R.id.content).getRootView();
or
getWindow().getDecorView().findViewById(android.R.id.content)

रूट-व्यू संदर्भ प्राप्त करने के बारे में अधिक जानकारी के लिए - https://stackoverflow.com/a/4488149/9640177

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.