I need to have a layout that has a view above a set of tabs. I've gotten the tabs working fine, but as soon as I try to add a view outside of them I'm left with that view and no visible tabs.
This works fine:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layo...
I had following business logic. In this Op1 and Op2 represents some operation. And param1,param2,... represents parameters required for executing these operations
Op1=param1, param2
Op2=param1, param2, param3
Now in UI I had a drop down list containing "Op1" and "Op2". Following should happen based on my business logic
1) If I select o...
Hey All,
When to use this functionality and when to use the other? I personally thing that to switch between two different modes one should use a toggle button but i need to convince some people at work. any formal UI literature on the subject? thanks
...
I am thinking about something that would allow to develop applications independent of the GUI library, but allow Qt and GTK being plugged in as needed.
...
In swing(GUI) application I used JButtons.
Now I need the same application in MIDP and I'm conuse...
I need Idea for what to use with and an example of how to use it and what kind of listener might possible fits.(Because I need to refresh the shown screen after every click on a button)
And one more question: I use Netbins with the s...
What I am looking to do is to draw an incomplete polygon using Java. I have figured out how to draw only the polygon in one shot, or even fill the polygon. I can also draw the incomplete polygon by using line segments but the problem with this is the BasicStroke.JOIN_BEVEL does not apply to line segments. Here is how I do it with the lin...
.
OVERVIEW, SAMPLE
Hello everyone,
I have created a basic Sudoku solver that can solve most problems fairly quickly. I still have a lot of work ahead of me to make it solve even the hardest problems, but I'd like to try to implement a basic JFrame GUI first.
I have worked with internet applets in the past, but never before with JFram...
Hi,
I am working on an RCP application. Currently, I am stuck on trying to get the project created from my custom wizard to open the files in my CNF-based navigator. I am not really sure whether it needs to be done on the navigator-side or the wizard-side.
...
In an if statement, I have a finish() because I don't want the control to go any further. But, the app exits, but as I see from the logcat, the control goes beyond finish().
Maybe that's also the reason why a toast supposed to be displayed and some other GUI actions before finish() are not taking place?
Please advice.
...
How can one set GridLayout known from Java or Wpf in WinForms control? Is it available by default or does it require writing some code (custom LayoutEngine implementation)?
...
Hi there I would kindly like to ask if NetBeans has any sort of GUI builder like the ones they offered for Java programming? Sorry for the noob Questions. If so, how do I install or use them? Thanks.
...
Hi,
I am trying to figure out why i cant set the child views of an ExpandableListView to not selectable. The moment i do so through the adapter not only do all the children lose their dividers but also if i expand a grouped view the parent loses its divider as well.
Has anyone found a way to solve this issue?
Thanks,
...
So I want to make a nice objective c GUI for HOWIE. Can someone show me how to use PEXPECT to communicate with howie? I don't want to use terminal, I want to use my gui as the interface.
...
Hi.
I found a GTK-Xt wrapper from SourceForge, that basically allows the creation of an XtAppContext app_context variable from GTK+.
What is the purpsoe of this app_context? Will I be able to use Xt functions in conjunction with GTK+ ?
Thanks, friends.
...
I'm just starting out with WPF and I'm trying to layout a UI.
I have a StackPanel and within it's bounds I want two listboxes stacked vertically, each covering half of the container panel - regardless of what contents are in them. So far, the listboxes are resizing depending in the items in them, so when they are empty, they don't cove...
I've a JFrame 'A' and I'd like to provide a very similar one, but with extra buttons, and different functionality. I was wondering if I should inherit 'A' and then overwrite the handler methods, and add components, or whether a different approach is recommended.
...
I made a Windows GUI through PHP's DOTNET class and System.Windows.Forms. But, I'm stuck on handling button clicks, field updates, form open/close events, etc.
I cannot get com_event_sink() working with any events whatsoever. I know of no method to get PHP to fake or sink control event "delegates". The best I can do is hackish - cons...
What aspects and practices specific to WPF could be most useful (and not inconceivable to implement) in non-WPF GUI programming?
...
Recently I have been having an issue with my installation of Visual Studio 2010.
On starting up, the menu items aren't being displayed correctly and are kind of clipping each other. Also, the start up page isn't displayed correctly either.
Here is a video of what is happening: http://www.youtube.com/watch?v=DWEIc_TMG_A
You can see me...
Hi,
I have to make an app for client where there are functionalities best defined by tab bar interface. I am no UI designer but I have done some basic research and read the Human Interface Guidelines by Apple. Another point is that app deals extensively with Web Services and user has to login before using any of the features of the app....