Questions tagged [titlebar]

An area of a window in a graphical user interface (GUI), normally located at the top, that commonly displays the name of the application, options for manipulating the window, and other important information about the application.

813 questions
37
votes
9 answers

How can I remove just the Maximize button from a JFrame?

I have a JFrame and want to remove the maximize button from that. I wrote the code below, but it removed maximize, minimize, and close from my JFrame. JFrame frame = new…
Mahdi_Nine
  • 14,205
  • 26
  • 82
  • 117
34
votes
6 answers

Android: The progress bar in the window's title does not display

I have a web view to override the built-in browser and I want to show a progress indicator on the title bar. This is the code: @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); …
Manu
  • 1,013
  • 1
  • 11
  • 20
29
votes
7 answers

C# 2005: Remove icon from the form's title bar

A client has asked me to remove the icon from the form's title bar. As they don't want to display any icon. But this me guessing as when I click on the icon property you have to browse to some icon.
ant2009
  • 27,094
  • 154
  • 411
  • 609
29
votes
2 answers

Change Spinner DropDown width

I need resize this part size to full display. How can i do this? My adapter: String[] navigations = getResources().getStringArray(R.array.actionBar); ArrayAdapter adapter = new ArrayAdapter( getBaseContext(),…
WOLVERINE
  • 769
  • 3
  • 12
  • 28
29
votes
7 answers

Is it possible to display a wpf window without an icon in the title bar?

As we all know, if the icon for a wpf window is undefined then the default icon is displayed. I want to display a window without any icon in the title bar. I realise that I could use a blank image, however this would cause the text in the title bar…
Michael Arnell
  • 1,008
  • 1
  • 9
  • 16
28
votes
2 answers

How to remove title bar in JFrame

I'm using the following code for practising, http://docs.oracle.com/javase/tutorial/uiswing/examples/layout/BorderLayoutDemoProject/src/layout/BorderLayoutDemo.java I also add frame.setSize(frame.getMaximumSize()); in createAndShowGUI()…
CanCeylan
  • 2,890
  • 8
  • 41
  • 51
28
votes
4 answers

Hide buttons from titlebar in Cocoa

The Apples Human Interface Guidelines say: macOS Human Interface Guidelines: Panels How do I make the very first titlebar in that image (with only a close button). Disabling both Resize and Minimize in IB only make the resize/minimize buttons get…
user142019
27
votes
4 answers

Custom title with image

i'm creating custom title for activity by disabling standard one and managing everything myself. I wonder if it's possible to replace/theme standart title to my needs. I can customize size, background image, and text via themes by changing…
Alex Volovoy
  • 67,778
  • 13
  • 73
  • 54
25
votes
5 answers

Is there a way to add the workspace path to the Eclipse IDE title bar?

I sometimes run more than one eclipse with a new version of a project and another with an older version in a different workspace. Add an extra window view of the "new" version and it becomes difficult to tell when alt=tabbing which eclipse belongs…
mP.
  • 18,002
  • 10
  • 71
  • 105
24
votes
9 answers

How to change title of Git terminal in Windows?

I work in Windows 10 and usually I have up to 5 CMD windows open. I work this way because I need to run the same application with different data and keep monitoring if any exception is thrown. I set a number as the window's title (using the title…
23
votes
3 answers

WinAPI: Create resizable window without title bar, but with minimize/maximize/close buttons (as Firefox/Chrome/Opera)

If you look at the windows of the browsers Firefox, Chrome or Opera, you'll notice that their windows have minimize/maximize/close buttons are resizable but have no title bar I'm interested: how can I create such a window? What I have already…
Nubok
  • 3,502
  • 7
  • 27
  • 47
22
votes
9 answers

Remove app title bar android

I know this question has been asked million times but whichever method I use is not good for me. If I use android:theme="@android:style/Theme.NoTitleBar" in the manifest file, the whole theme of the app changes. If I put…
sparrkli
  • 661
  • 1
  • 7
  • 17
21
votes
3 answers

How to Change Color of NSWindow Title Bar in OSX

After a Long search regarding the NSWindow title bar color and title color, i have found a easy drawing solution. I posting this to share my knowledge.
Muruganandham K
  • 5,271
  • 5
  • 34
  • 62
20
votes
2 answers

Android: What's the difference between a title bar and an ActionBar

I can't tell if they're the same thing or not and they seem to have different methods for removing them but I'm not sure if those are just multiple methods to do the same thing or not. So is there a difference and if there is what is…
user2312638
  • 443
  • 2
  • 6
  • 17
19
votes
10 answers

How Can we hide title bar while using action bar?

I'm using ActionBarSherlock and I'm trying to hide the title bar of my application but whenever I do that, I get a NullPointerException when accessing the ActionBar How do I remove/hide the title bar? Please note that I'm not referring to the title…
Arci
  • 6,647
  • 20
  • 70
  • 98
1
2
3
54 55