Questions tagged [appbar]

An application desktop toolbar (also called an appbar) is a window that is similar to the Windows taskbar.

It is anchored to an edge of the screen, and it typically contains buttons that give the user quick access to other applications and windows.

An app bar consists of a toolbar and potentially other widgets

source: http://msdn.microsoft.com/en-us/library/windows/desktop/cc144177(v=vs.85).aspx

499 questions
5
votes
1 answer

Remove the chevron/arrow added to the AppBarButton when a Flyout is attached

I have two AppBarButton which are placed in a grid. They display as intended when there is no flyout attached, however at the point I attach a flyout the system is adding a chevron/arrow to the right of the icon. How can I remove chevron/arrow? I…
Sam
  • 4,024
  • 6
  • 45
  • 74
5
votes
1 answer

How do I remove the bouncing effect on appbar?

Appbar used to have an issue when flinging. It was not scrolling smoothly. Please refer to…
vida
  • 4,159
  • 1
  • 18
  • 25
5
votes
1 answer

What are the correct AppBarButton icon sizes to include with UWP apps?

Note: This question is only about AppBarButton icons. In writing a UWP app that runs on all form factors, I'd like to include all necessary variations of AppBarButton icons. From what I've read so far, it seems that I need 24x24 icons in each of…
bright
  • 4,298
  • 1
  • 30
  • 52
5
votes
1 answer

How to autohide v7 appbar when scrollin hides it partially - android

Following a tutorial, I created this layout: Here's my layout xml file:
4
votes
1 answer

How do I focus a TextBox in an AppBar in a C# Metro application?

I have the following code: The…
Tamara Wijsman
  • 11,892
  • 8
  • 51
  • 80
4
votes
1 answer

appbar overlaps notification bar when bottom navigation bar is present

When I navigate to the pages through the bottom navigation, the pages appbar gets overlayed by the phones notification bar. Page with bottom-navigation: Same page without bottom navigation: ***I need my app-bar to look like the second picture with…
user14659913
4
votes
2 answers

How to add Back Button without using AppBar in Flutter?

I wanted to add a back button on my appBar and wanted to make the appBar transparent so that it shows only the back button.
Simran Aswani
  • 805
  • 4
  • 21
4
votes
1 answer

Fragment transition with BottomAppBar Material Design Component

I'm trying to implement the following bottom appbar transition specified in the material design components' documentation with regard to the floating action button. The official design documentation for this behaviour is specified here Now, the…
J-me
  • 314
  • 3
  • 12
4
votes
2 answers

app:elevation="0dp" hide layout inside toolbar

I have take custom layout inside the toolbar and perform action according to it. but in some case i want make toolbar transparent so when i have set app:elevation="0dp" than it will hide my custom layout but still action will performed when click on…
4
votes
2 answers

Is there a way to achieve a dynamic height in bottom widget of SliverAppBar

The SliverAppBar has an attribute bottom which has to have preferredSize. Right now I have it returning constant value: ... new SliverAppBar( expandedHeight: _kFlexibleSpaceMaxHeight, flexibleSpace: new FlexibleSpaceBar(.....) ... …
Jerzy Kiler
  • 655
  • 1
  • 8
  • 9
4
votes
2 answers

App bar like Google inbox web app

I am building a react web application. I am using material ui for it. I am looking to have an appbar like google inbox has (screenshot attached below). Currently I have Appbar imported from material ui module, but it just contains title , navigation…
EdG
  • 1,947
  • 5
  • 34
  • 74
4
votes
1 answer

Runtime change of AppBarLayout color

How does Android Google Play app change color dynamically on user clicks on AppBarlayout? I have tried the following tabLayout.setOnTabSelectedListener(new TabLayout.OnTabSelectedListener() { @Override public void…
Jai
  • 83
  • 7
4
votes
0 answers

CoordinatorLayout not working properly when content inside NestedScrollView doesn't fill entire screen

When there is less data inside the nested scrollview then the view gets stuck to the footer. When it has enough content to show it works as expected. I have a CoordinatorLayout at root which has AppBarLayout and NestedScrollView as child.…
4
votes
1 answer

Clean up AppBar after process kill

I have written an Application Desktop Toolbar (a.k.a AppBar), it works great except for the fact that if I kill the process, the AppBar code never gets a chance to cleanup by sending an ABM_REMOVE. The problem is that this basically screws the users…
Maurice Flanagan
  • 4,991
  • 3
  • 28
  • 36
4
votes
4 answers

AppBar Multi-Monitor

I've made a simple appBar with just a label on the top of the screen that shrinks the desktop but I'm having trouble making it appear my second monitor. I've been searching around but everything I've found has been for WPF. These are most likely the…
Jim
  • 577
  • 2
  • 6
  • 19