Android Dashboard UI Design

Поділитися
Вставка
  • Опубліковано 23 лис 2019
  • Android Dashboard UI Design
    In this tutorial we will design a dashboard screen using Constraint Layout.
    For more exciting android tutorials, please subscribe my UA-cam channel and hit the bell icon for notifications

КОМЕНТАРІ • 24

  • @hackertomobile
    @hackertomobile 4 роки тому

    Good work friend!

  • @catkot8184
    @catkot8184 4 роки тому

    Thank you 🌹

  • @chauhanmehul1763
    @chauhanmehul1763 4 роки тому

    Nice video

  • @mr.bamboo3x
    @mr.bamboo3x 4 роки тому +2

    Could you make series videos about Service. Thread. Multi Thread.

  • @mr.bamboo3x
    @mr.bamboo3x 4 роки тому +2

    And... Have you knowledge about design layout.? How to improve the performance when design app layout?

  • @cmink675
    @cmink675 4 роки тому

    nice, how to create collapsingtoolbarlayout with bottom tab navigation with fragment

  • @eerojunewsservice
    @eerojunewsservice 4 роки тому

    sir please make a video complete tutorial of basic news app with front end backend also database complete run the project sir. am asking so many youtubers this way but till now there is no one cant make this type of video...

    • @khan.hassan
      @khan.hassan 4 роки тому +1

      You may take courses from udemy

  • @canisklanadam8388
    @canisklanadam8388 3 роки тому

    Is there a complete version of this application in the market?

  • @Peekcasso
    @Peekcasso 4 роки тому

    my linearlayout stay transparent also after padding

  • @moviechannel7602
    @moviechannel7602 2 роки тому

    How can you find icon image for dashboard? anylink to get image?

  • @RitikaMG01
    @RitikaMG01 4 роки тому

    how to make baars clickable placed at right corner

  • @ealfriadez
    @ealfriadez 4 роки тому

    comparte el proyecto por favor.

  • @chsoffice8481
    @chsoffice8481 3 роки тому

    It's responsive all size device??

  • @onurhandev
    @onurhandev 4 роки тому +1

    Can you share a codes ?

  • @luffyy8084
    @luffyy8084 3 роки тому

    won't the images in card view get blurry when used on big devices

  • @RitikaMG01
    @RitikaMG01 4 роки тому +1

    how to attach menu.xml to three baars placed at right corner

    • @chiragkachhadiya
      @chiragkachhadiya  4 роки тому

      Just set click listener to the image view of menu and to display menu items you can use pop-up menu.

    • @RitikaMG01
      @RitikaMG01 4 роки тому

      @@chiragkachhadiya ok thanks

    • @RitikaMG01
      @RitikaMG01 4 роки тому

      @@chiragkachhadiya hello Sir, I am doing this and while clicking on Logout nothing happening
      showMenu = (ImageView)findViewById(R.id.imageMenu);
      showMenu.setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View v) {
      PopupMenu dropDownMenu = new PopupMenu(getApplicationContext(), showMenu);
      dropDownMenu.getMenuInflater().inflate(R.menu.menu,dropDownMenu.getMenu());
      dropDownMenu.setOnMenuItemClickListener(new PopupMenu.OnMenuItemClickListener() {
      @Override
      public boolean onMenuItemClick(MenuItem item) {
      return true;
      }
      });
      dropDownMenu.show();
      }
      });
      }
      @Override
      public boolean onMenuItemClick(MenuItem item) {
      switch (item.getItemId()) {
      case R.id.menuLogout:
      prefConfig.writeLoginStatus(false);
      prefConfig.writeName("Not Login");
      startActivity(new Intent(this, MainActivity.class));
      break;
      default:
      return false;
      }
      return false;
      }