The remoteview tag has no wiki summary.
0
votes
0answers
28 views
Where to get Outside Data from RemoteViewsService.RemoteViewsFactory
I need to populate a ListView in a Homescreen Widget. I know I use RemoteViewsService.RemoteViewsFactory as a sort of Adapter.
I also know how to populate the rows in getViewAt() method to show ...
7
votes
3answers
124 views
Image in Widget
I am trying to set image in image view in widget layout in onUpdate, but image is not updating
@Override
public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] ...
1
vote
0answers
47 views
How can I modify a textview from a non-activity class? Android
I want to modify a TextView from an alarmmanager class's onReceive method this class does not extend activity. The alarm sends an intent that creates a notification and I want to make it so clicking ...
0
votes
0answers
25 views
Android notification tray does not collapse after clicking ongoing notification
When clicking an ongoing event having remoteview with various butons, the activity loads up in the backgound and the notification tray does not collapse.
I am getting this problem only on ICS 4.0. ...
0
votes
1answer
27 views
RemoteViews now working in View class
I am making custom UI in View class and i made RemoteViews in it but it is now working
View Class
public class CustomeView extends View {
Bitmap icon;
float left=0;
RemoteViews rs;
...
0
votes
3answers
60 views
setTextViewText not working in IntentService
The code here in onHandleIntent:
RemoteViews views = new RemoteViews(getPackageName(), R.layout.mylayout);
views.setTextViewText(R.id.txtView1, "some string");
...
Bundle bundle = intent.getExtras();
...
-2
votes
1answer
61 views
Android-How to make Notification(RemoteViews) support EditText? [closed]
Is there a simple way?
or can I achieve this by adding a customized EditText in Android SDK?
2
votes
1answer
31 views
Android: how to store an Object in consecutive Service calls?
Happy Easter to everybody!!
Please I have the following situation:
I call a Service several times, the Service performs its job and then stop himself.
What I need is to store an abject between ...
0
votes
0answers
49 views
Modify background drawable of remote layout in Android
I have a widget layout with a drawable background:
<RelativeLayout
android:id="@+id/basic_widget_layout"
android:background="@drawable/basic_widget_style_2"
android:clickable="true" ...
0
votes
1answer
56 views
Why the layout of Android app widgets is based on RemoteViews?
As subjected. Instead of RemoteViews, why can't the layout of app widget be based on real layout?
Is it because the process to update the real layout of app widget and the process in which ...
0
votes
0answers
110 views
Android - RemoteViews.setImageViewBitmap not working
I'm writing an widget which will load the image from URL and then display to an ImageView
public class ChopInkService extends Service {
...
...
public Bitmap getBitmapFromURL(String src) ...
0
votes
1answer
344 views
Getting android.app.RemoteServiceException: Bad notification posted from package in custom notification
I am trying to create a custom notification using the remote view.
Steps Followed:
1. Created a layout and placed in the res/layout folder
2. Extended the RemoteViews class and implemented some ...
0
votes
1answer
191 views
setImageViewUri from URL on remote view in android widget
I try to set image from url with remote view. Here is the code that i use :
rv = new RemoteViews(mContext.getPackageName(), R.layout.widget_item_default);
WidgetItem item = ...
0
votes
0answers
51 views
Android - Insert a RemoteView into an AlertDialog
I have a method that create a RemoteView:
public static RemoteViews createRemoteView(Context context) {
RemoteViews remote = new RemoteViews(context.getPackageName(), R.layout.remote_view);
...
2
votes
1answer
168 views
App Widget Update Headaches: Failed Binder Transaction, RemoteViews, setImageURI, and orientation changes
I am having an issue with updating AppWidgets and a confluence of limitations/bugs in android is preventing me finding a workaround.
My app widget is themeable so I need to be able to update the ...
1
vote
1answer
299 views
How to set custom ListAdapter to list view in appwidget?
I have a listView. I needed a custom view for each list item, so I've created a custom ListAdapter which gives the views, layout for which is given below. But how do I set this listAdapter to the ...
4
votes
2answers
350 views
How to change the image in app widget programmatically in android
I design an android app widget in which two ImageView i want change the image both of the the ImageView when click on the image as well as call a method.
Now i use RemoteView like this
RemoteViews ...
0
votes
1answer
260 views
Android ListView in widget onClick not working
I'm trying to make the listrows in my ListView Widget clickable by using the setOnClickFillInIntent method but whenever I click a ListItem nothing happends. Here are some key parts of my code:
Intent ...
2
votes
4answers
282 views
Retain image aspect ratio in app widget GridView
I'm working on an application that has several application widgets, and some of them are using a GridView to display their content. The content is a bunch of movie cover art images, and I'd like to ...
0
votes
0answers
66 views
Set contact thumbnail to widget imageview
I was trying to set my widget's image view with contact's thumbnail. I was trying with activity's image view and I was able to get the thumbnail but when I tried to get the same with setImageViewUri ...
2
votes
2answers
231 views
Convert String to Color int
String ColorString = "Color.BLUE";
int colorint = Integer.parseInt(ColorString);
...
views.setTextColor(R.id.tvConfigInput, colorint);
Why does this crash? in the logcat i get ...
0
votes
1answer
284 views
How to set background of ImageView in a Notification's RemoteView in Android?
I've transplant Android's Notification, How to set background of ImageView in a RemoteView of Notification, and set it to transparent?
I tried
remoteViews.setInt(R.id.icon, ...
0
votes
1answer
80 views
resolveUri failing on app private data file
I'm generating a bunch of image files when my app first runs, and then trying to use remoteViews.setImageViewUri() later to get these images into my ImageViews. However, when I run the app I'm seeing
...
0
votes
1answer
116 views
android update widget appearance
I want to change one of the visual elements of an android widget when the user clicks it. This is in the widget's xml
<ImageView
android:id="@+id/bg"
...
0
votes
2answers
156 views
Rotated images in remoteviews
I'm making a battery widget, and to avoid having 20 separate PNG files for the different levels I've got one PNG which I rotate to 20 positions. On Android 3.x+ this is easy, as the ImageView element ...
0
votes
0answers
81 views
Android widget doesn't respond to clicks until after RemoteView updates
I have an android app widget that gets some information from the internet when it is first launched.
More precisely it launches a service that asynchronously does a network call. At the end of that ...
0
votes
1answer
166 views
AppWidget: Getting RemoteViews width
I have an AppWidget that has a layout that displays images and overlays text (with a TextView) over it. I have multiple image sizes that the layout take account of, making the TextView width change as ...
1
vote
1answer
243 views
Change numColumns in GridView in Widget (RemoteViews) has no effect
I have a widget(which works) with a GridView, which shows information in 1 or more columns/rows.
I want to set the number of columns programmatically, cause the users shall choose. If I set the ...
3
votes
1answer
527 views
Android Remote View Notifications
I have an android notification bar which uses a remote view. I have 2 buttons on there to play and pause audio and also an icon to return to the application. I want to be able to click the icon (or ...
0
votes
0answers
106 views
How to add dynamically created view to widget?
I have a widget which shows some information downloaded from the internet.
I know I can add a View to a RemoveViews by using XML layouts, but I have a difficulty doing this.
Here is my code:
...
3
votes
2answers
550 views
Passing custom parcelable object extra or in ArrayList to RemoteViewsService breaks appwidget
Basically what i want to do, is to pass a custom parcelable object via an intent, to the RemoteViewsService and thus to my RemoteViewsFactory. For some reason, this simply doesnt work :S Whenever i ...
0
votes
0answers
75 views
RemoteViews is not saving correctly into bitmap
I want to draw the Notification contentview, which is a RemoteViews, into a bitmap.
I'm using this code:
private Bitmap getImageOfRemoteViews(RemoteViews rv) {
try {
View view = ...
0
votes
0answers
127 views
RemoteViews is not saving correctly to bitmap with getDrawingCache
I want to draw the Notification contentview, which is a RemoteViews, into a bitmap.
I'm using this code:
private Bitmap getImageOfRemoteViews(RemoteViews rv) {
try {
View view = ...
2
votes
0answers
156 views
Disable list item in App Widget
Is it possible to have some items disabled in a list view in an app widget on the home screen?
Right now I'm using a PendingIntent template for the list view and then I fill in the intents for each ...
0
votes
0answers
45 views
Is there a way to make OnClickPendingIntent of remoteviews works in versions of Android earlier than 4.0?
I have the following problem.
The notifications of my application don't work well in versions of Android earlier than 4.0 because the OnClickPendingIntent doesn't works.
How I can do?
1
vote
0answers
79 views
Is it possible to add a RemoteViews to a LinearLayout in Activity?
I'd want to show a preview of my widget (or notification) in my Activity but I don't want to use other code.
Is it possible to add a RemoteViews to a LinearLayout in Activity or trasform a ...
2
votes
0answers
121 views
RemoteView and wrong layout_weight
I have a problem with layout_weight and the remoteView of my appWidget.
All my toggle are like this
With this xml :
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout ...
0
votes
1answer
310 views
Is it possible to add onclick listeners to remoteviews in android
I have created a notification method as shown below:
NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
Notification notification;
...
0
votes
1answer
142 views
Determine if a Method is a `RemotableViewMethod`
I am building a Widget which contains a ProgressBar. If the Widget is computing I set the visibility of that ProgressBar to VISIBLE, and to INVISIBILE if all computings stopped. There should be no ...
3
votes
2answers
292 views
Crash setTextViewTextSize in a widget only without Jelly Bean
I am making a widget in which you can specify the text size
controles.setTextViewTextSize(R.id.LblMsg, TypedValue.COMPLEX_UNIT_SP,
textSize);
I am working with android 4.1
...
0
votes
0answers
54 views
Do RemoteViews preserve changes across updates? Strange behavior in my app
I'm implementing a widget and I've noticed a strange behavior, which it does not seem to me to be related to an implementation error.. I'll try to briefly explain what happens:
1) In the ...
3
votes
0answers
174 views
How to partially update views in an app widget without rebuilding all the RemoteViews
I'm implementing an app widget and I'd like to be able to change the property of a single view in the widget layout, without rebuilding all the RemoteViews from scratch, which involves loading XML etc ...
1
vote
1answer
87 views
xml Shape-Gradient doesn't show on my Widget
I want to give my Widget a gradient background. For this, I used following xml for the gradient:
<?xml version="1.0" encoding="utf-8"?>
<shape
...
1
vote
0answers
406 views
onClickPendingIntent in RemoteViewsFactory
I'm developing an Android Widget for an app, and the problem is I can't set onClickPendingIntent() on a button in a RemoteViewsFactory.
I explain: I created an AppWidgetProvider, which calls an ...
0
votes
0answers
554 views
Android widget updating remoteView in service
My goal is to update a widget views (remoteviews in fact) in a service. The onStart method is called, the thread is run, but the widget (namely the progressBar view) does not get updated. It does not ...
0
votes
0answers
135 views
Animated ImageView inside RemoteView
I would like to put an icon with a simple animation inside Android notification. I tried putting an anim resource inside src attribute of an ImageView that I have put into a custom layout in the ...
2
votes
0answers
108 views
Android How to setWeight of a RemoteView?
I need to know the code that allow me to set the Weight of a RemoteView.
I tried with this code but this doesn't work:
RemoteViews remoteViews = new RemoteViews(c.getPackageName(), ...
0
votes
1answer
248 views
Android adding dynamically View in RemoteViews show only the first view! How I can change layout_alignParentBottom from code?
How I can add dynamically a View in a Relative layout using a cicle like for?
This is my code:
RemoteViews remoteViews = new RemoteViews(c.getPackageName(), R.layout.layout_1);
for(int i=0; ...
1
vote
0answers
159 views
Give app widget button custom colour with rounded rectangle shape
I've got an app which creates widgets where the user can set the colour of the button's background via a colour picking dialog. However, the only way I can set the button in the remote view to have ...
1
vote
1answer
488 views
update textView in a widget
I've read a lot of Q&As but I couldn't find my answer.
May be something in my implementation is wrong.
The problem is that my TextView in the widget doesn't get updated.
The logic is this:
...


