Tagged Questions
The bar tag has no wiki summary.
11
votes
13answers
502 views
How to make the cleanest code when reporting progress to a user?
I've struggled for the last couple of months to come up with some clean code to report progress to a user. Everything always seems to boil down to:
ReportProgress("Starting Task 1");
doTask1();
...
9
votes
3answers
6k views
Refresh progress bar in notification bar
I would like to put a progress bar in the notification bar. The idea is showing the progress bar while the program uploads a file to a server. Everything else is ok, but I can not figure out how to ...
7
votes
3answers
9k views
How do you plot bar charts in gnuplot?
How do you plot bar charts in gnuplot with text labels?
(Sorry - I'm answering my own question here - as it suggest in the first entry of the faq)
6
votes
2answers
188 views
Disable Chrome translation bar on my website
I have a chat website that is highly dynamic and when visiting it with Google Chrome, the translation bar appears offering to translate the site. While the translation of dynamic content works better ...
6
votes
1answer
687 views
R - legend: assign multiple colours to the same text
I have an R barplot that has six bars divided into two parts each, and six colours - but several of the colours mean the same thing. How can I assign one text to several colours in the legend? Thanks ...
6
votes
1answer
815 views
How can I adjust 3-D bar grouping and y-axis labeling in MATLAB?
I have a 3D plot like this:
On the y-axis of the plot, each group of three bars refers to the same parameters: x1, x2, x3. I would like to have a spacing on the y-axis for each group of three bars, ...
5
votes
0answers
39 views
3d bargraph issue in Matplotlib
When I make a 3d bargraph with 4 or more values the graph looks correct but when I I try it with 3 the bars become triangles, what's going on?
from mpl_toolkits.mplot3d import Axes3D
import ...
5
votes
2answers
70 views
Oscillating horizontal green glow whilst something is loading c#
When loading something such as a software update in Windows 7 there is often an oscillating green glow effect in a horizontal bar. Is this a standard control that can be utilized in C#? If not, how ...
5
votes
1answer
190 views
How to add a bar on top of the iphone screen (below status bar)?
Can someone advise me on how I can implement a "touch to return to call" type of UI as seen in the screenshot below?
My intention is to display the bar on top when my application receives a ...
5
votes
2answers
340 views
Android: vertical RatingBar?
How can I rotate the RatingBar?
Is there an example for a vertical custom RatingBar?
5
votes
4answers
682 views
Alert Bar on Top of HTML Page?
What is the best way to create an alert bar with css but without javascript on the top of the page, like the one StackOverflow has for saying "Stack Overflow works best with JavaScript enabled"?
I've ...
4
votes
2answers
69 views
building my first navigation bar?
OK! I just started HTML and CSS today and thought it would be a good approach to learn by building something rather than just reading some text.
[ http://jsfiddle.net/GUkrK/ ]
So I decided to build ...
4
votes
1answer
267 views
How do I make a Menubar Application with a NSPopover?
I have seen a lot of applications with a Menubar Item or applications with only a Menubar interface.
There are some tutorials and stuff on the internet showing you how to accomplish that. But the ...
4
votes
3answers
216 views
CSS Expressions
I read somewhere that CSS Expressions were deprecated and shouldn't even be used. I had never heard of them and decided to take a look. I found a code example that kept a floating element in the ...
4
votes
1answer
2k views
How do I dim the system bar in Android 3.0 (Honeycomb)?
How do I programatically dim the system bar in Android 3.0 (Honeycomb)?
4
votes
2answers
747 views
How can I programmatically open/close notifications in Android?
I've searched everywhere, but can't find anything in the SDK or on Google on how to do this. I know it's possible because all the cuustome launchers are able to do it via a button press (LauncherPro, ...
4
votes
1answer
463 views
How to remove the android notifications bar?
I know that adding android:theme="@android:style/Theme.NoTitleBar" to the manifest removes the title, but what do I do to remove the notifications bar?
4
votes
4answers
2k views
android button bar toggle
I am looking for a UI view that imitates the functionality of the
Google Maps directions screen UI control where it allows the user to
pick the type of directions allowed, either Car, Transit or ...
3
votes
1answer
73 views
How can I manage a ProgressBar in the background?
So, MyActivity will have a progress bar. MyActivity's BroadcastReceiver will catch the intent "START_TASK". After that, as time passes, I want to update MyActivity's progress bar. I was originally ...
3
votes
2answers
132 views
Adding a status bar to c++ console applications
I am making a linux application using C++ and it will print info out to the console. Parts of the program will take a while to compute and I would like to add a status bar in the console similar to ...
3
votes
1answer
131 views
Creating Bar Charts in Python
I have a couple of problems with the Bar Chart that I'm trying to create in python. My code for the chart looks like this:
import matplotlib
matplotlib.use('Agg')
from pylab import *
import calendar
...
3
votes
1answer
438 views
android, How can I decrease the size of Ratingbar?
In my activity I have some Rating bars. But the size of this bar is so big!
How can I make it smaller?
Thanks I did it with the following style:
<RatingBar
style = ...
3
votes
2answers
348 views
How can I create a barseries plot using both grouped and stacked styles in MATLAB?
The MATLAB bar documentation states the following:
bar(...,'style') specifies the style of the bars. 'style' is 'grouped' or 'stacked'. Default mode of display is 'grouped'.
However, I would ...
3
votes
2answers
295 views
Admob on Android - Status bar area not covered when activity is resumed
I'm experiencing very nasty bug trying to implement Admob in my
application.
I thought the problem is in my code, but after some investigation I
found it present also in Android-Banner-Essentials ...
3
votes
1answer
363 views
matplotlib bar chart with dates
I know about plot_date() but is there a bar_date() out there?
The general method would be to use set_xticks and set_xticklabels, but I'd like something that can handle time scales from a few hours ...
3
votes
3answers
179 views
removing x axis in error.bars
I've been having a problem today, I want to remove the x-axis from the following R-plot, but it just won't dissapear. I want the axis to be on top.
Is anybody able to help me?
library(psych)
temp ...
3
votes
3answers
321 views
How to resize progress bar according to available space?
I am looking to get an effect where the length of my progress bar resizes accordingly to my PuTTY window. This effect is accomplished with wget's progress bar.
Here is my program I use in my bash ...
3
votes
1answer
218 views
Implementing a MySQL Command Progress Bar
We are trying to parse a file and store it in a MySQL database. The commands will be importing a large trace file the could be several gigabytes in size, so it it may of interest for the user to ...
3
votes
5answers
674 views
Progress bar updates from a PHP Script
I'm writing a small app that does the following:
Allows a user to upload an excel file
Reads the data from each column of the excel file and creates an image based on the data
Right now I upload ...
3
votes
2answers
1k views
Android progress bar embedded in ui and not in dialog
Is there a way to embed the progress bar in the UI with out an dialog.
And not programmatically but with layout xml files.
I am guessing it has to be some sort of animation or a "drawable"
3
votes
2answers
612 views
Can i put an icon in the status bar when my application is running? ( PERMANENTLY, also in background mode)
i want to put just an ICON when my application is running, also in background (home key pressed or something like that)
i mean that it's just an icon showing that my application is ON, and it have to ...
3
votes
4answers
2k views
Show tab bar after its hidden
Is there any way to show a tab bar after it has been hidden?
Got a tabbar-nav structure. For one of the tabs, I need to hide the tab bar for its 2nd and 3rd level view. But at the same time I will ...
3
votes
3answers
2k views
HTML pressing spacebar moves page down?
I have a problem that I'm not even sure what to search for in order to fix. When I press the spacebar my entire page moves down (I don't want this to happen). My BODY tag is styled to ...
3
votes
4answers
3k views
Add UIActivityIndicatorView into UIBarButton
How do I add a UIActivityIndicatorView spinner circle into a UIBarButton? So that when a user taps on one of those buttons on the navigation bar, they see a spinner while the loading takes place?
...
3
votes
2answers
4k views
C++ libcurl console progress bar
I would like a progress bar to appear in the console window while a file is being downloaded. My code is this: ...
2
votes
0answers
93 views
Android: Make the notification bar as google+
Does anyone have an idea or sample code that make the notification bar widget(at the bottom) that is the same as one in Google+ application in Android?
Thanks in advance,
Tri.
The idea is this ...
2
votes
0answers
34 views
can't set border linewidth for bars of rowstacked histogram
I'm plotting a histogram using gnuplot. And would like to set width of all bar borders.
I set style of my histogram bars using:
set style fill solid border -1
after it I would like to set linewidth ...
2
votes
1answer
85 views
how to make stacked bar graph readable in white and black only
I have a stacked bar graph to include in my paper, which is going to be printed by reviewers in black and white only. When I print it out, I cannot tell the difference between some parts of it, which ...
2
votes
1answer
78 views
Android Seek bar
I'm just wondering if the seekbar changed in Android 2.1 . I tried to create one but it showing up as a green line with a circle on it instead of the usual yellow rectangle. If so, is there any other ...
2
votes
2answers
76 views
Implementing Search bar in Android
I am developing an app for samsung galaxy S2, version 2.3.3. I want to implement search bar on it. Can anyone help me about this. I tried android developers guide but all in vain. Any help will be ...
2
votes
2answers
82 views
css progress bar
i have a question in regards to a progress bar. i've read pretty much all the posts here but it apears i cant make any of them work in my scenario.
i have the following which shows numbers such as ...
2
votes
3answers
134 views
Customize bar colors in XYJfree chart
how to paint different bars in different colors, I tried to use renderer, here is my sample code:
public IntervalXYDataset createDataset() throws InterruptedException {
parseFile();
final ...
2
votes
1answer
172 views
Android status bar icon
How do I put an icon into the android status bar? I don't want any notifications to be associated with it. Just the icon and nothing more.
Thanks
2
votes
3answers
293 views
Android Navigation Bar
I've done a great amount of searching and I can't seem to find anything that helps me. I'm new to Android programming (I do know Java though), and I am working on an app that deals with dynamic ...
2
votes
2answers
243 views
Adding tab bar with 3 items to a view based application
So, right now I had created a view-based application with 8 different views. I want it to show a tab bar on 3 of the views. This tab bar would have 3 items, which will allow the user to switch to the ...
2
votes
1answer
142 views
Android Status Bar Notification: make it un-clearable and have it return to app (not start a new instance)
I am developing an Android app and I want a status bar notification that cannot be cleared by the user. Does anyone know how to do that? I've seen them with apps like Skimble where a non-clearable ...
2
votes
5answers
704 views
Change Navigation bar Background image on each navigation
I am working on iPhone app. I have added Navigation bar Background image
With interface: -
@interface UINavigationBar (backgroundImageWithTitle)
And method: -
- (void)drawRect:(CGRect)rect
By ...
2
votes
2answers
136 views
Need help to use Rating bar
I want to use rating bar in my android application.
My game has 10 levels I want to show the stars according to the score/time user scored per level. A screen will have 10 images for each level and ...
2
votes
3answers
189 views
Movable bars with value using java
I want to create a bar with a value. If i move the circle, then the value in the field should change. How can i do this?
Here is the screen shot. How can i achieve this?
Something similar to this is ...
2
votes
1answer
118 views
Split the plot for above and below parts for 3 factorial barploting
I need to barplot the above- and belowground biomass against 3 factors. For each biomass, I am able to plot it using the barchart from lattice, however, I have no idea as to plot two of them, ie, ...