A GUI control used for selecting 1 of 2 states.

learn more… | top users | synonyms

0
votes
1answer
19 views

ToggleButton IsChecked trigger

I am writing one application where I have a ToggleButton and other few controls on UI. I want to achieve bellow two things when state of ToggleButton is IsChecked. 1) Hide few controls e.g. ...
0
votes
1answer
22 views

C# WPF ToggleButton Changing more than one property in a trigger?

I have a togglebutton and when it is clicked I simply want to change the background and the content. The content changes correctly, but the background changes, but instead of my specified background ...
0
votes
1answer
14 views

implement music with SharedPreferences in android

i'm building an app in android, i've three classes right now, one Main, one Music and one Setting. i'm trying to put music in my app, so that when i exit the app it'll stop. i've done that part. i ...
1
vote
1answer
29 views
+50

Centering ToggleButton Image - With No Text

Here is my ToggleButton: <ToggleButton android:id="@+id/bSmenuTopItems" android:layout_width="wrap_content" android:layout_height="48dp" ...
1
vote
1answer
71 views

Custom image button with jQuery Mobile

I'm trying to build an interface for my first mobile app and the app has to work on both Android and Windows Phone, so I'm using PhoneGap + jQuery Mobile. To design the UI i'm working with Appery. ...
0
votes
2answers
20 views

Attached properties vs. custom control

I have often bemoaned the fact that the WPF ToggleButton does not have properties for AlternateContent and AlternateContentForeground. I'm curious if there's any advantage to creating a ...
0
votes
1answer
11 views

Change sequence of states on a three-state ToggleButton

It seems that the out-of-box sequence for a three-state ToggleButton is On, Indeterminate, Off. I would like to change this to On, Off, Indeterminate; similar to the question presented here . I've ...
0
votes
1answer
31 views

How to change icon on a Telerik RadToggleButton in WinForms?

How do I add and change icons on a Telerik RadToggleButton in a WinForms application? I want to add something similar to the pushpins used on Telerik's documentation here. I've tried to just change ...
1
vote
0answers
53 views

Extjs 4: Panel Toggle Add animation

The scope basically is to animate the toggling of the panel. In a click of a button it will collapse then expand after a while (Certain process and reconstruct content). That is what i want to add ...
0
votes
1answer
26 views

how would i set this app up to accept localized currency and output to that currency

Hi I'm trying to set up localization to my app, it currently recieves strings from a textbox, and converts them to a double. Then it proceeds to do a calculation and output that as a string onto the ...
0
votes
1answer
43 views

JavaScript toggle button only works on second click if display attribute is in header

I came across an interesting quirk, and was wondering if anyone could help me understand it. A simple JavaScript-driven toggle button, as below, works beautifully if the display:none of the toggled ...
-2
votes
0answers
38 views

Easiest language toggle button for blogspot [closed]

I am looking for the simplest and quickest solution of: Language toggle in form of a button graphically this will be two flags Please advise me on it. I need a code to copy and paste into the ...
-3
votes
2answers
98 views

How to change toggle button text when pressed?

I would like to be able to press a button that says "hide" and then say "show" when the user clicks the button. In the code below the toggle part works, but now I need the "hide" text to turn to ...
0
votes
2answers
46 views

Android togglebutton doesn't display the correct value

I'm new in android development and I'm trying to add a ToggleButton to my first android project. and have a problem to make it work like I would like. This is my ToggleButton : <ToggleButton ...
0
votes
0answers
81 views

Phonegap Android flipswitch toggle button

I am working on a phonegap app and I use phonegap + iScroll 4 + fastclick.js. For the settings page I am ussing the Android toggle button from: http://proto.io/freebies/onoff/ But when I launch my ...
0
votes
0answers
107 views

Android Application Development: Multiple Toggle Button with Action Listener

I'm trying to create an android application with multiple toggle button. Each ToggleButton has two state. either ON or OFF and initially all the button are set to default, being OFF. I have to ...
0
votes
1answer
13 views

Toggle button not working

My toggle button was working fine, but i made some tweaks to another part of my code and now it has stopped working. the reset button in the same panel also works fine. this is what i am doing- ...
3
votes
1answer
65 views

how to get the setOnCheckedChangeListener for dynamically added multiple togglebutton in Android

I have successfully added dynamic multiple togglebutton in activity. But I am stuck handling setOnCheckedChangeListener of each togglebutton. i created demo code snippet. linearLayout = ...
0
votes
1answer
33 views

togglebutton show state of service after leaving and return to activity

i have a mediaplayer that streams music in a service in my main activity i click on a toggle button the music begins to stream and the image for the toggle button change from play to stop when i ...
-1
votes
1answer
16 views

intentService thread not getting stopped permanently

Even after googling for long, I couldn't find the solution to my problem. Problem is: In my application, I launch an intent which call the file implementing intentService on click of toggle button ...
0
votes
3answers
57 views

Android toggle button state

Hi I've an activity that shows a toggle button. The issue is that, when I press the back button on the device and then I come back to my activity, the state of the button is reset. How can I do to ...
0
votes
3answers
187 views

Change color of toggle (TreeView) in wpf programmatically

I got a problem with changing color of Toggle in TreeView programmatically. I defined in ResourceDictionary SolidColorBrush with: <SolidColorBrush x:Key="FillBrush" Color="#000000" /> i ...
0
votes
0answers
77 views

Positioning jQuery toggle buttons

I'm writing web application where have lot of troubles with positioning jQuery toggle buttons. I'm trying to use jQuery UI positioning but for some reason can't make it working for toggle buttons ...
0
votes
1answer
51 views

Set image of disable state for custom toggle in android

I make a custom toggle button in android, checked state and unchecked state are work fine with two image, now i want set disable image for disable state of toggle button. How i do that? Thanks! This ...
1
vote
4answers
50 views

How to handle toggle event on other close button in jquery?

I have created toggle effect using jquery. I want to close a popup div with top-right close button, without affecting current toggle effect. for the demo see the link. $(document).ready(function(){ ...
2
votes
1answer
67 views

How to set text to right of image on a togglebutton

I have a togglebutton with an image, but when I change the text of the button, the text is behind the image. I added extra spaces in the setText() function, but this doesn't scale well on different ...
0
votes
1answer
38 views

Programme a Toggle button to Set Widget update time

@Override public void onClick(View arg0) { // TODO Auto-generated method stub if(Tb.isChecked()){ android.appwidget.AppWidgetManager.ACTION_APPWIDGET_UPDATE.equals("120000"); ...
0
votes
1answer
75 views

Toggle Service via ToggleButton for GPS Tracker

i'm currently writing an app that should to the following: The UI only contains one toggle button. If it is turned on the GPS Position shall be sent to an external server. If it is turned off, ...
0
votes
1answer
436 views

custom Toggle button in android

I have added a custom toggle button and it works fine. the issue is that for toggle button enable and disable. I need a different layout for button on ,button off ,button on & disabled ,button on ...
0
votes
1answer
109 views

Android Playing sound in AsyncTask when ToggleButton is checked

I am trying to set a sound that is going to be looped in intervals of 1 second when toggle button is checked. I tried to make asynctask for that but then when I open this activity it crashes why? What ...
0
votes
1answer
86 views

ToggleButton Style only works on last ToggleButton

I'm trying to customize my ToggleButtons so that when checked they say 'Yes' in green and when not checked, say 'No' in red. I've created the following style which is sitting in my Styles resource ...
0
votes
2answers
103 views

Android Toggle Button crashes

I am trying to make a sound to play in intervals when a toggle button is checked. After I click toggle button my app doesn't play any sound and crashes. Why? Code: int bpm; double timetw; ...
0
votes
1answer
142 views

How to use a ToggleButton to change input type of TextView every time the ToggleButton is clicked?

I have a ToggleButton which I want to change the input type of a TextView every time the button is clicked. I want the input type of the text view to toggle between password and normal text every time ...
1
vote
1answer
62 views

Could not re-enable the KeyGaurd once disabled it

I have write below code to toggle the KeyGaurd of my android phone using a toggle button. but I am facing an strange behavior. it disables the keygaurd successfully but. not re-enabling. ...
0
votes
1answer
62 views

How the preseve the state of toggle buttons in a list?

I have a list(with uncertain numbers of items) with toggle button. Every time I press back button, and enter that page again, all toggle button become off as state in xml. How can I get the position ...
0
votes
1answer
63 views

Context menu and ToggleButton in ListView row

I have got a ListView, whose row contains two TextViews (either of them is invisible because it contains a primary key) and one ToogleButton. Now I have to realize context menu for my ListView, but if ...
0
votes
0answers
168 views

How to use togglebutton to control macro in Outlook 2010

I have some macros linked to custom ribbon item in Outlook 2010 (for Meeting/Calendar events) which creates XML after I export such as: <mso:button idQ="x1:Project1.testmsgbox_0_1232A31" ...
2
votes
2answers
177 views

how get status of all the toggle button present in the listview android

how get status of all the toggle button present in the list view android public View getView(int position, View convertView, ViewGroup parent) { pos = position; ApplicationInfo ...
-1
votes
1answer
127 views

In listview scrolling down the toggle button on status will go previous off status

this is my getview method of myadapterclass public View getView(int position, View convertView, ViewGroup parent) { pos = position; ApplicationInfo entry = ai.get(position); ...
0
votes
0answers
62 views

Toggle Button in Windows 8 using javascript

I need toggle buttons that play audio when checked, and pause audio when unchecked. Like a play/pause functionality. Also how do you make custom toggle buttons if possible. Sorry, I'm new to app ...
0
votes
3answers
360 views

Android toggle button display wrong value after orientation change

Here is my problem. I've got a simple activity which set a layout, and add rows in a table-layout(itself in a scroll view). Those table-rows have a custom layout with a text-field and a toggle button. ...
0
votes
2answers
99 views

WPF: Toggle multiple Buttons by dragging the mouse over them

Is it possible to toggle the state of multiple ToggleButtons by dragging the mouse over them (with the left mouse button hold down)?
1
vote
2answers
273 views

Not all Views inside ViewPager's Fragments will update

I have 3 Fragments inside my ViewPager. Inside my Fragments I added static ToggleButtons.(static, because I didn't find a workaround for a nullpointerexception, if I wanted to use findViewById() ...
0
votes
2answers
88 views

Intent not working properly in switch between different activities

I have made an application with 5 activities-calculator1.java,calculator2.java,deposit.java,calculator3.java,calculator4.java respectively,In activity 1 there is a toggle button and a next button,and ...
3
votes
1answer
150 views

Toggle button crashes when turned on/off more than once

I can touch the toggle button on (once) and off (once), but if I touch it a third time, it turns on but never plays the music. From there, when I touch it again to turn it off it crashes. public ...
0
votes
0answers
99 views

Android-Require an option from the popup menu to be selected

In Android, is there a way to require the user to select an option from the popup menu? I don't want to use a dialog fragment because I think it would be too obstructive. So if they click outside of ...
2
votes
2answers
123 views

How to divert flow of control by using toggle button of another activity from existing activity

I have made an application with 4 activities named Activity1.xml,Activity2.xml,Activity3.xml,Activity4.xml now.in activity1 i have put a "toggle Button" with "yes" and "no" ,Now my first activity also ...
0
votes
0answers
85 views

based on Toggle button value divert controll to different activities

I have made an application in that i have some activities,from them one activity has a toggle button,Now i want is that when i press togglebutton to "yes" then if i press on back, next button of ...
0
votes
1answer
102 views

connection ToggleButtonBar, combobox and datagrid

I want to connect these 3 together. When you choose from the togglebutton bar it will be displayed in the combobox, and from there you can choose other data that will be displayed in the datagrid. ...
1
vote
1answer
102 views

sharedpreferences don't read button state

I am trying to save the state of my toggle button when the app got killed and relaunched via SharedPreferences. I can see on /data/data/myapp/shared_prefs that the xml with the value true/false is ...

1 2 3 4 5 6