Android/Java: How to add icon in my bottom bar dynamically

55 Views Asked by At

I would like to add icons in my bottom bar dynamically by taking it in a file path with a folder containing all the icons images (to avoid compiling the app each time). I found this ticket but I don't really understand how to adapt it...

   @Override
    public void run() {
        Menu menu = bottomNavigation.getMenu();
        if (menu.size() == 0) {
            MenuMap = new ArrayMap<String, Integer>();
            for (int i = 0; i < myitems_detail.length(); i++) {
                try {
                    JSONObject obj = myitems_detail.getJSONObject(i);
                    if (obj.getString("ICONE") != null) {
                        int imgID = mContext.getResources().getIdentifier(obj.getString("ICONE"), "drawable", mContext.getPackageName());
                        MenuItem myItem = menu.add(0, obj.getInt("PAGE_ORDER"), 0, obj.getString("MENU_NAME"))
                                .setIcon(imgID);

                        MenuMap.put(obj.getString("MENU_NAME"), obj.getInt("id"));

                    }
                } catch (JSONException e) {
                    e.printStackTrace();
                }
            }

        }
    }

Any ideas? Thanks in advance.

1

There are 1 best solutions below

0
On

I Think This Works For You But This Case You Have To Enter Full Path Of File Also Use Any Web Url Of It

 Uri filePath = null;

Pass Here Url Or

 filePath = Uri.parse("String file location or url");

        Bitmap myBitmap = MediaStore.Images.Media.getBitmap(getContentResolver(), filePath);
        myMenuItem.setIcon(new BitmapDrawable(getResources(), myBitmap));