Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
4answers
16k views

Change title bar text in Android

How do I change the text of the title bar? as of now it just displays the title of the program and im wanting it to display something of my choosing and be different for each page/activity in my app ...
9
votes
3answers
554 views

Tabs in title bar: what's the secret?

Chrome and Firefox 4, among other applications, now put some of their user interface in the title bar. In Windows, the OS normally controls the entire title bar. An application can create a custom ...
4
votes
3answers
545 views

Add a border icon to the form

Using Delphi I would like to add another button to the border icon buttons; close, maximize, minimize. Any ideas on how to do this?
3
votes
1answer
113 views

how to override default title with custom title in android

I have designed a custom title bar for my application. It works well for me too. But there is a problem. The default title is seen (for just a second), before my custom title bar overrides it. Is ...
2
votes
1answer
724 views

How do i add a spinner to the title bar of an activity?

I tried to set a custom title bar includes spinner object but everytime it gave me that exception called "You cannot combine custom titles with other title features". I searched to find a solution ...
2
votes
2answers
459 views

Custom Java Window Title Bar Menu

I'm trying to allow the user to change the title of a window in Java without adding components to the window itself. I'm actually trying this with a JInternalFrame, but figure the solution should be ...
1
vote
1answer
246 views

Delphi: custom button in custom title bar - à la Firefox/Opera main menu button

I want to create 5 buttons in a title bar of a window using this way: http://delphihaven.wordpress.com/2010/04/19/setting-up-a-custom-titlebar/ Firefox has one button (the same for Opera): Not ...
1
vote
1answer
289 views

How can I put a custom button on the title bar? [closed]

Possible Duplicate: Non client painting on aero glass window I want to have a button like Skype's compact-view button on the title bar. How can I do that? For example:
1
vote
1answer
82 views

Android: read window title resource id

I am trying to create a custom title layout but I'd still want to use the activity's original label text. Is there a way to reference the window title (label attribute) in my custom title xml? Thanks. ...
1
vote
1answer
226 views

Custom title of PreferenceActivity (problem)

I have the same problem like this question: Custom title bar in PreferenceActivity ?? After extending PreferenceActivity, I write this code in onCreate(), it just shows a blank grey title. I think it ...
1
vote
0answers
99 views

Error Regarding the Title

I have got an AndroidRunTimeException, that says that you cannot combine custom titles with other title features. Can anybody tell me why it occurs?
0
votes
1answer
49 views

AlertDialog title underline color

Is there a way to change the color of the title underline in an AlertDialog? I already changed the title color through a custom style definition (see below), but I didn't found any xml attribute for ...
0
votes
0answers
19 views

Title bar image gets collapsed

I have been trying to customize the title bar with few buttons on left title in center and another button on the right side of it without using styles or themes. I have disabled the theme in the ...
0
votes
1answer
59 views

gtk3 GtkWindow title bar color

Using gtk3, how can I change the default GtkWindow titlebar color? Would it involve GtkStyleContext? I've only used GtkCssProvider.
0
votes
2answers
76 views

How to create clickable icons on the Custom Title Bar

I want to create the click effect on the following type of custom title Bar. There are three functions in here:Home,Title and Search, clicking either of it should perform the further function. I ...
0
votes
1answer
80 views

My Custom Title with listview is not showing proper height and format

I want to give a custom title above my listView. After reading some threads here I made the code as follows, but the title bar size is becoming very small, i want to make it a little bigger. Also ...
0
votes
2answers
138 views

Title Bar customization

I'm trying to build a c++ program that customizes another window title bar, adding colored text and icons. The window I need to customize is in a closed source program. Right now I can only change ...
0
votes
2answers
65 views

android custom title not filling parent widthwise

I have customised my title bar. The problem is though i have mentioned the width as fill_parent its not filling parent with some blank space on either sides the code is below <resources> ...
0
votes
1answer
85 views

Title size Does not increase

I want to increase my title bar size. I have gone through many lessons and I have changed my background color and text color, but I'm failing in increasing the size of the title bar. java file ...
0
votes
0answers
172 views

Android: custom title style

I have a listactivity with iconified text which I'm giving a custom title. Here's my custom_style.xml: <resources> <style name="CustomWindowTitleBackground"> <item ...
0
votes
0answers
167 views

Problem getting rid of Custom title bars with Tab Widgets

I am struggling to find a way to make custom title bars that are declared in my Tab Widget class disspear when certain classes are selected. For example here is my tab widget class: ...
0
votes
3answers
217 views

Android — How to change the titlebar text for one activity?

This one is similar to a question that I asked yesterday. However my concern is different. To summarize I needed to remove the text from the titlebar for one of my activities (the main activity) (1). ...
0
votes
1answer
510 views

Android title bar icon size

Is it possible to specify the size for the icon for the android title bar? requestWindowFeature(Window.FEATURE_LEFT_ICON); setContentView(R.layout.main); ...
0
votes
1answer
427 views

how to set image view for custom title bar in android

I want to set custom title bar to which i want to set ImageView as background to the title bar. how to set ImageView for custom title bar in android. i used: ...
0
votes
1answer
603 views

Custom title using Fragments

I've got an app, that uses custom title feature. I'm trying to migrate it to fragments api. Resulting code, I've got, is like this: public class MainActivity extends CategoriesListActivity { ...
0
votes
2answers
216 views

titlebar bottom

i read this tutorial how to create a custom-titlebar. http://www.anddev.org/view-layout-resource-problems-f27/my-own-titlebar-backbutton-like-on-the-iphone-t4591.html works fine BUT: is it possible ...
0
votes
2answers
276 views

Custom titlebar doesnt fill titlebar area

I have added a custom titlebar using the following code howeveri seem to have about 10 px spacing left and right a 2px at the bottom, is their anyway i can make the custom titlebar fit the titlbar ...
0
votes
2answers
313 views

How to set correct margins

I have this layout code which I thought was correct: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="horizontal" ...