-
All Sites blackberry j2me android iphone windows-mobile symbian nokia windows-phone-7
Notification default text color
This documentation here: http://developer.android.com/guide/topics/ui/notifiers/notifications.html#CustomExpandedView Says: ... to apply the system's default colors for notifications on Android 2.3 …
Using named pipes with FFmpeg on Android
I know this has been discussed before (here for example), but I still can't figure out if what I'm trying to do is possible. I'm searching for a way to stream data from Android's MediaRecorder to …
Authenticate user in Linkedin on Windows Phone 7 using oAuth
I'm trying to make an application that gather many social networks that helps users to post and manage linkedin information, facebook, etc, but when I'm trying to login on linkedin, the browser gives …
Layout on top of Tabs
I think I have a simple question. I'm working with tabs and my xml code is: <TabHost android:layout_width="fill_parent" android:layout_height="fill_parent" android:id="@+id/tabHost" ...
Android intents, close previous when opening next
I'm making an app for Android and I need some help. I have three intents A, B & C. When I'm in A and start B, I don't want to finish() A because I want the option to go back. But if I from B start …
simple cursor adapter query
I have created a SimpleCursorAdapter. I would like a way to compare two columns. lets say the columns are called realData pracData. If i want to compare two columns how would I write the statement to …
Android app failing on launch
Hello good people of Stack Overflow, I am having trouble with an application I am writing, as evident from my title. What I am trying to do is simply play a song, looping, and whenever the screen is …
Can't save my view to image, but can save other views, please help !! I have been desperate for 2 days, I need this to finish my thesis
Here's a part of my code, if I use the code in another activity in some other code, such as: case R.id.buttonMinus: where, instead graphView, I use a standart view (e.g. the code could look like: …
Blend removes animation
I created Windows Phone page in Expression Blend. I added a TextBox element to the page and then I replaced control template for my TextBox by a copy of default template. Blend generated everything …
Duplicate ListFragment entries when changing orientation
So, I'm developing an app with fragments, and everything is fine, except that when I change orientation the entries on my ListFragment duplicate like this: And when I go back to portrait mode, the …
KKGridView vs AQGridView
Anyone have a good comparison between KKGridView and AQGridView? Is there a reason to use one over the other?
MVC Design in iOS
I am creating an iPhone app that allows you to specify certain criteria, fetches a list of events from a web service, and lists the events in a table view so that users can add the individual event to …
Android How to set an xml shape as widget background?
How can I set a shape defined in xml as background of an image in a widget? Here are my attempts: RemoteViews views = new RemoteViews(c.getPackageName(), R.layout.widget_layout); Drawable dr = ...
UINavigationItem BackBarButtonItem not replaced
I'm having a curious issue with backBarButtonItem. I want to replace its title in the entire application for "Back" and replacing the back button works in most of view's did load event but in other …
How can I handle java.lang.OutOfMemoryError bitmap size exceeds VM budget pageradapter?
I implemented in my app an activity that uses a ViewPager, with a PagerAdapter to show 4 images. You can see only one image at time and to show the next you have to swipe it. The size of the images …
XCode archive not including files in referenced folder
I'm having a hard time producing an Archive for my project. I can run fine on my device and in the simulator. I have several resources that I am referencing in a folder that I added as a reference. …
Why iPhone don't receive push notification?
I really don't know where is the problem. I am using library ApnsPHP to sending Push notifications. I also tried other scripts, but that also not working. I generate push certificates with this ...
How can I prevent default double-tap behavior (zooming, panning) in Mobile Safari on iOS4?
When I double-tap near the edge of a page that exceeds the height or width of the browser window in Safari under iOS4, it zooms in or out and/or scrolls up, down, right, or left, depending on the size …
Android. that this does not work well? is a bug? SetMargins
By setting the margins to zero the image fills the screen. But to set the margins to one hundred, it fits all right except the right side. Why do it? ImageView imagen = new ImageView(this); ...
Android Calculation error - analytic geometry
While trying to calculate the function between a touch point (dx, dy), i am receiving an error when calling the calculation function. Here is my move function: public class Mice { public Movement …
How to save an onActivityResult result?
i have created a MainActivity and a SecondActivity. When onClick MainActivity it starts the SecondActivity. When SecondActivity finish, it returns a value that turns an ...
Animating the drawing of a line
I'm trying to animate the drawing of a line by the following way: .h CAShapeLayer *rootLayer; CAShapeLayer *lineLayer; CGMutablePathRef path; .m path = ...
android.view.InflateException: on Intent
I have a problem with an intent I get an InflatException. This happens when I click on any of the Buttons of a Main activity that is a Menu. acording to the log Cat I know that the problem should be …
Faster alternative to glReadPixels in iPhone OpenGL ES 2.0
Is there any faster way to access the frame buffer than using glReadPixels? I would need read-only access to a small rectangular rendering area in the frame buffer to process the data further in CPU. …
Getting error while using Proguard
I am trying to Export android application in eclipse, but proguard is throwing the following error . 1) Note: duplicate definition of library class 2) Maybe this is program method 3) can't find ...
Logic for UITableViewCellAccessoryCheckmark
I want to make a typical situation: when user selects any cell, it's accessoryType turns in checkmark. Only one cell's accessoryType can be checkmark. And then I wanna save in NSUserDefaults ...
Is canvas drawing slow?
I have my custom view class which displays game map on the screen. I am drawing it with onDraw() overriding and using Canvas drawing methods inside. Now I wan't to animate my map, for example with …
android + gmail + feed + get ALL mails
If I use https://mail.google.com/mail/feed/atom/ feed from gmail, I get ONLY unread emails - as a nice XML parseable by any reader. Please tell me if there is a way to get ALL emails - including both …
Dynamically Draggable, Editable and self resizing TextField
I'm working on an android app in Eclipse and I need a textfield that can be placed, dragged, and edited by the user on screen. Now I have this working on an absolute layout, which is fine, and I have …
How to check if multiple instances of an Activity are present
I've been trying to teach myself Android, and have just learned that I've been creating multiple instances of the same Activity in my code. Conceptually I know it's there, but is there any tool (like …