UI elements to use on an Android Application screen.
0
votes
0answers
23 views
Android NumberPicker widget looks different on emulator and graphical layout
I am trying to put some number pickers into my application, yet their look is much different on the emulator and on the graphical layout. Here are screenshots:
This is how it looks like on emulator:
...
0
votes
0answers
22 views
Android SearchView ListView filtering
I have a very simple working example of a SearchView in which I am searching for content within a ListView by enabling textFilterEnabled on the ListView.My problem is when I query a string I ...
0
votes
0answers
22 views
Button in widget not updating textview
I am trying to create an a button in an android widget that increments a value and sets it on the text view. But the value is not updating the counter-num.
Here is my DemoUI.java class
package ...
0
votes
0answers
15 views
android service to update UI - when to use stopSelf() in onStartCommand() method?
I wrote an android widget and I use a UpdateWidgetService class to update the UI.
The following is my onStartCommand method.
My questions are:
Should I leave the stopSelf(); call inside that ...
0
votes
0answers
17 views
change width+height of an AlertDialog with checkbox
was working on an alertdialog with checkbox something like this
CharSequence[] items = {"Google", "Apple", "Microsoft", "Google", "Apple", "Microsoft"};
boolean[] itemsChecked = new ...
1
vote
0answers
30 views
how to create Log entry once button is pressed?
I have a android widget which is managed by a service. In the onStartCommand I do:
for (int widgetId : allWidgetIds) {
RemoteViews remoteViews = new RemoteViews(this
...
0
votes
1answer
22 views
Broadcast Receiver in a service but intent not getting caught on service once process is killed
I have a simple widget that does some calculations once the screen comes on and displays them and clears all the fields once the screen goes off ... i have a broadcast receiver setup in my service ...
0
votes
1answer
27 views
widget not being loaded on the homescreen
I am getting an error "Problem loading widget".
I tried to create a widget that simply flips the number values 1 and 2. But its not getting loaded. Also, my logcat is empty so cannot figure out the ...
0
votes
0answers
26 views
android custom Switch widget for SwitchPreferenc
I search around stackoverflow and find next related topics:
How can i style an Android Switch?
Custom switch widget in Android 4
Set switchStyle - get error resource not found - why?
I also find ...
0
votes
1answer
29 views
Null Pointer error when trying to utilize a class with AlertDialog.Builder [closed]
Trying to inflate an AlertDialog.Builder. I'm trying to get the date wheel (Yuri Kanivets' wheel) to appear inside of my dialog. Since the exact code that I need exists inside one of his classes, I'm ...
0
votes
0answers
18 views
Run a private Void on widget press?
Hi i have a private void which i need to run when widget is pressed how can i do this ?
i can add a widget but in phone when i add widget program force closes it self .
how can i run a private void ...
0
votes
1answer
42 views
how to update widget only if wifi state changes?
Following this tutorial I quickly created a simple widget which displays and updates the current time every second on the home screen:
Question:
I was wondering how this code has to be changed, so ...
0
votes
1answer
50 views
how to launch activity after widget button is pressed?
Following this tutorial I quickly created a simple widget which displays the current time on the home screen:
I've modified the code so that the widget also comes with a button. My goal is to ...
0
votes
1answer
27 views
How to detect effectively if the values of widgets inside an Activity changed?
I have an activity with multiple sorts of controls: EditTexts, Comboboxes, Spinners. The user can modify the values of the controls accordingly.
When the Back button was hit, I want to check if any ...
0
votes
0answers
24 views
Reset the layout parameters of a programmatically modified widget (e.g. textview) from the xml file
I have a simple enough question:
If I modify a widget (e.g.) textview by changing something programmitically (e.g. the text and background colour), how do I reset it to what was specified in the ...
1
vote
1answer
34 views
Widget Click not Working?
I am trying to implement widget based on commonsware code 'LoremWidget', see here at Github
The problem is that the click is not working
on WidgetUpdate, same as WidgetProvider
for (int appWidgetId ...
0
votes
0answers
34 views
Can't add the widget to the home screen - App isn't installed
I'm trying to crate my first widget.
I run the app through eclipse, and It launches fine.
But when I try to add the widget from the widgets menu to the home screen I get a toast that says :
App ...
1
vote
0answers
41 views
How does the Android Lock Screen Camera work
In Android 4.2 new lock screen widget have been introduced. They can be accessed by sliding left or right on the lock screen.
One of those widgets is a camera widget — only this camera widget is ...
1
vote
0answers
32 views
home screen widget text view not updating
This is the code of my program -
package com.nadeem.todos;
import android.app.PendingIntent;
import android.appwidget.AppWidgetManager;
import android.appwidget.AppWidgetProvider;
import ...
0
votes
1answer
40 views
How to move multiple selected items from listview to another listview
I have two listviews SAMPLE IMAGE HERE.i want to move items from one listview to another.
i have two buttons,"move to right" and "move to left".
Its a multi selection listview.after select items we ...
-1
votes
1answer
26 views
Is there any open source project with a “Drag and Drop to unlock” component like the unlock screen of ICS? [closed]
I'd like to use a widget in my app like the one in the Unlock Screen of the Android ICS (4.0).
You can see what I'm talking about with this picture:
So, I'd like a component that I can drag the ...
0
votes
0answers
15 views
fire an event after pressing button for few seconds inside widget
i want to create such a button on a widget, if user presses it for at least 3 seconds then the particular action will get fired and if user presses it less then 3 second then the event wont get fire ...
0
votes
0answers
28 views
Ordering item stack gallery widget android
i want to make gallery with custom stack item. But i can't create stack with my requirement. I've try to setImageSpace but i think that method can solved my problem.
This is my requirement stack item ...
0
votes
0answers
24 views
How to change some widget style not app theme?
style.xml
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="DarkSherlockTheme" parent="Theme.Sherlock" />
<style name="LightSherlockTheme" ...
0
votes
1answer
35 views
new listview item duplicates action of first listview item when listview scrolls down?
I have button and progress bar(invisible) in listview. When button clicks it should disappear and progress bar should be visible and start running (downloading from web server) and when it is done ...
0
votes
1answer
38 views
Android widget change update time
I'm using this code to schedule my widget
// Timer
Timer timer = new Timer();
// Schedule time
timer.scheduleAtFixedRate(new MyTime(context, appWidgetManager), 1, 60000);
private class MyTime ...
1
vote
0answers
29 views
pendingintent not working sometimes
I have a home screen widget which has text views. When I click on the text view my Main activity opens. I have set a PendingIntent on the text views.
Intent intent = new Intent(context, ...
0
votes
1answer
76 views
android.os.transactiontoolargeexception in Launcher
We are developing enterprise applications, widgets and launcher for Android TV. We have Android set top box which runs our launcher, some widgets and apps. Widgets have fixed position in launcher when ...
1
vote
0answers
21 views
update multiple home screen widget from activity
I have 2 widgets on my home screen. I know how to update the single widget from my Main activity. The following code updates my single widget when i press the back button on my Main activity.
...
0
votes
2answers
45 views
android home screen widget layout change on click event
I am developing an android home screen widget for my ToDo app. It shows 3 Todos at a time on the widget layout. I mean my widget layout can accommodate only 3 TextViews.
Now, I have another ...
0
votes
0answers
28 views
RemoteViews setViewVisibility() does not work for all child views inside a ViewFlipper
I have a widget with a ViewFlipper:
<ViewFlipper
android:id="@+id/view_flipper"
android:layout_width="match_parent"
android:layout_height="match_parent"
...
0
votes
0answers
14 views
Show a list of items in grid view for a android widget
I want to show a list of items in grid view for a android widget. I could do that for an Activity. But facing difficulty in implementing Grid view for widget as I am not allowed to use findViewById ...
0
votes
1answer
58 views
Get access to an image view from ListFragment
I have a ListFragment with its Layout A and for each item on the list I have its layout as well called B. Inside B I have an image view with id "imgVi":
<ImageView
android:id="@+id/imgVi"
...
0
votes
2answers
73 views
Launching android application from the web
I have an application installed on Android emulator The code is below When I'm launching the emulator, I'm typing to the browser "market.android.com" and I want my application to be launched, but it ...
0
votes
0answers
55 views
lock screen widget emulator
I'm kind of new to developer world and i am having a little issue with my android 4.2.2 emulator.
i've created a very simple widget which only shows an image, and now i'd like to add it to my ...
3
votes
1answer
53 views
Android TabWidget White Space Issue
I am working on the TabWidget and i am getting a white space between the TabActivity and the Tabs.
I don't know how to remove this white space please can any one help me out how should i remove it, ...
1
vote
1answer
29 views
How can I lock whitespace characters from the text field in real time?
I have a login activity and I want to lock whitespace characters from the username textfield in real time. I mean not from the class. directly from the xml activity if is possible.
Thanks.
-5
votes
0answers
24 views
Display Of Messages From The Database [closed]
I have made an sms application. Am successful in sending and receiving my messages. Now what i have done is that i have stored the sent and the received texts in a separate table in an Sqlite ...
-1
votes
0answers
48 views
How to add Miters (m) to edit text in android in TextWatcher
I need to add the Meters "m" symbol when users enters into the text in edit text box.I have searched for this and found some solution .but it wont works for me.
My edit text in xml file is ...
...
0
votes
1answer
46 views
Android Error: android.widget.TextView.<init>
i want to run the application in ma Galaxy S2 but i found this error. i post the logcat. please tell me what s the problem? and how to resolve it ? thanks
05-07 11:23:38.820: D/AndroidRuntime(8900): ...
0
votes
1answer
51 views
update Widget Non periodiccally
I have a widget that contains a TextView that i want update only when Onreceive(){this receiver is not the one implemented for widget} method is invoked. I dont want to update the widget periodically ...
0
votes
1answer
42 views
How to DRAG/ MOVE a RelativeLayout in android
I am zooming a relative layout, but after zooming i am unable to drag or move the zoomed layout
this is my code to zoom the layout..plz help me to drag or move the zoomed layout
public class ...
3
votes
1answer
21 views
Android: AppWidgetProvider cant change the updating interval time
In My application I have to use HomeScreenWidget. And every 2minutes It should update its content. So I tried the following steps
i) create AppWidgetProvider class
public class MainWidget extends ...
1
vote
1answer
33 views
How to get widget height on startup
I have an activity with a ListView in it. I need to determine the height of the list in pixels right after application start.
Every activity's onXXX() function I try to call ListView.getHight() in ...
0
votes
0answers
11 views
Android Widget - PLW From Changing Layout Via Config Activity
Ive created a config activity that changes a widget's layout if a string array id is selected. Problem is that I get random Problem Loading Widget errors after configuration of the widget.
Here's my ...
1
vote
0answers
27 views
How to implement PINCH ZOOM on a RelativeLayout in android
I have an XML and the total XML is to be pinch zoomedl. The XML has ImageView, TextView, ExpandabeleListView and so on.. Now i want to make all the content in that XML such as the image, text and the ...
-3
votes
0answers
52 views
Multiple Device Communication Using Wifi-Direct in android [closed]
I have 3 android device(A,B,C) with Wifi-direct.An A device wants to communicate with C through B.How will this Communication done.
-3
votes
2answers
54 views
Custom ListView without extending ListActivity [duplicate]
I am trying to create a simple android project which has a organisation (Of Activity XML)
|Image | Button | Button |
|Listview Row(Image + Text + Image) |
| Button |
The samples which I have seen ...
-2
votes
0answers
22 views
I want to know Device Information Using it's IP in android [closed]
I am working on Android Wifi Direct and i want to know connected device informations like(Nearby devices,peers).If any one have an idea about it so please guide thanks
0
votes
3answers
50 views
Add EditText widget while app is running
I'm trying to add EditText widget while app is running, and I'm not sure how do it. I hope it is possible.
What I want to do is that the user will select one item from a spinner list and then an edit ...







