Re: [android-developers] Re: Android Assets

2012-12-26 Thread Shubham Aggarwal
In my image processing, I want to use an image stored in assets folder to process user's bitmap image. So, rather than sending the data for both I would like to send the data for only user's image. On Wed, Dec 26, 2012 at 12:39 PM, skink psk...@gmail.com wrote: Shubham Aggarwal wrote:

Re: [android-developers] Re: Android Assets

2012-12-26 Thread Nikolay Elenkov
On Wed, Dec 26, 2012 at 5:27 PM, Shubham Aggarwal shubham.1992aggar...@gmail.com wrote: In my image processing, I want to use an image stored in assets folder to process user's bitmap image. So, rather than sending the data for both I would like to send the data for only user's image. That

[android-developers] google play store reply comments

2012-12-26 Thread Salih Gündüz
Why I can not reply comments to my app in store? Is there anyway to reply? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Android Live wallpaper launch in jelly bean

2012-12-26 Thread djhacktor
m facing an issue in using *WallpaperManager.**ACTION_CHANGE_LIVE_WALLPAPER *in jb which launch direct live wallpaper according to android doc Intent live = new Intent(WallpaperManager.ACTION_CHANGE_LIVE_WALLPAPER); live.putExtra(android.service.wallpaper.extra.LIVE_WALLPAPER_COMPONENT,

[android-developers] resource identifier not found

2012-12-26 Thread dashman
i'm using textCursorDrawable in a layout. i know that attribute is from api12+, so i put it in a folder named layout-v12. still getting error: No resource identifier found for attribute 'textCursorDrawable' in package 'android' EditText android:id=@+id/text

Re: [android-developers] Re: OnStop and OnDestroy aren`t invoked after calling finish()

2012-12-26 Thread Mark Murphy
On Tue, Dec 25, 2012 at 8:35 PM, TreKing treking...@gmail.com wrote: I believe it is entirely possible and actually a frequent occurrence that Activities are destroyed while processes are not. For example, you might open a second Activity within your own app that causes memory pressure - your

Re: [android-developers] resource identifier not found

2012-12-26 Thread Mark Murphy
Your project build target (e.g., Properties Android in Eclipse) needs to be API Level 12+ to be able to build a project containing that attribute. On Wed, Dec 26, 2012 at 7:37 AM, dashman erjdri...@gmail.com wrote: i'm using textCursorDrawable in a layout. i know that attribute is from

Re: [android-developers] resource identifier not found

2012-12-26 Thread dashman
mark, but if i put it in a folder named layout-v12 - shouldn't that take care of it. i'd like my program to be compatible back to android v1.6. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] how to query from two unrelated tables and display data in same listview

2012-12-26 Thread Vijay Krishnan
Hi all, I am having two unrelated tables in my application database.I have to query from two tables and display data on same listview. Is it possible to do this?. Regards, vijay.k -- You received this message because you are subscribed to the Google Groups Android Developers

Re: [android-developers] resource identifier not found

2012-12-26 Thread Mark Murphy
On Wed, Dec 26, 2012 at 8:02 AM, dashman erjdri...@gmail.com wrote: but if i put it in a folder named layout-v12 - shouldn't that take care of it. No. That says that *at runtime* only use this resource on API Level 12 and higher. However, the resource *compiler* at compile time also needs to be

Re: [android-developers] resource identifier not found

2012-12-26 Thread dashman
i did that and it's working fine. I now noticed that in my Eclipse project there's an Android 3.1 folder and a android.jar file in it. normal? i hope it's not being including in my distributable app. -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] resource identifier not found

2012-12-26 Thread Mark Murphy
On Wed, Dec 26, 2012 at 8:33 AM, dashman erjdri...@gmail.com wrote: I now noticed that in my Eclipse project there's an Android 3.1 folder and a android.jar file in it. normal? Yes. You had one before, albeit from a different Android version (whatever you had set previously in Properties

Re: [android-developers] resource identifier not found

2012-12-26 Thread dashman
disregard. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more

[android-developers] Re: how to query from two unrelated tables and display data in same listview

2012-12-26 Thread skink
Vijay Krishnan wrote: Hi all, I am having two unrelated tables in my application database.I have to query from two tables and display data on same listview. Is it possible to do this?. Regards, vijay.k what didn't you understand from this thread;

[android-developers] Re: how to query from two unrelated tables and display data in same listview

2012-12-26 Thread skink
Vijay Krishnan wrote: Hi all, I am having two unrelated tables in my application database.I have to query from two tables and display data on same listview. Is it possible to do this?. Regards, vijay.k what didn't you understand from this thread;

Re: [android-developers] Re: how to query from two unrelated tables and display data in same listview

2012-12-26 Thread Vijay Krishnan
my question is when i m having two cursors that points to different data and i want to display the data in same listview.How could this can be done by merge cursor? On Wed, Dec 26, 2012 at 8:15 PM, skink psk...@gmail.com wrote: Vijay Krishnan wrote: Hi all, I am having two

Re: [android-developers] Re: OnStop and OnDestroy aren`t invoked after calling finish()

2012-12-26 Thread Latimerius
On Wed, Dec 26, 2012 at 2:35 AM, TreKing treking...@gmail.com wrote: On Tue, Dec 25, 2012 at 3:04 PM, Latimerius l4t1m3r...@gmail.com wrote: The thing I don't get is how would that be possible if Android doesn't collect individual Activity instances, just whole processes. I believe it is

Re: [android-developers] Re: how to query from two unrelated tables and display data in same listview

2012-12-26 Thread skink
Vijay Krishnan wrote: my question is when i m having two cursors that points to different data and i want to display the data in same listview.How could this can be done by merge cursor? Cursor cs[] = new Cursor[2] cs[0] = ... // first query cs[1] = .. // second query MergeCursor mc = new

[android-developers] Re: Contact shortcuts in Android 2.2: Missing anchor rectangle

2012-12-26 Thread abhay_401
Hi, How you resolved this issue.. I am also getting the same issue. Help me out to solve this. On Thursday, May 27, 2010 11:10:07 PM UTC+5:30, Bo wrote: Ah, I see, thank you~ intent.setSourceBounds API level 7 On May 27, 6:12 pm, Romain Guy romain...@android.com wrote: The rect is

Re: [android-developers] Re: OnStop and OnDestroy aren`t invoked after calling finish()

2012-12-26 Thread Latimerius
On Wed, Dec 26, 2012 at 1:38 PM, Mark Murphy mmur...@commonsware.comwrote: On Tue, Dec 25, 2012 at 8:35 PM, TreKing treking...@gmail.com wrote: I believe it is entirely possible and actually a frequent occurrence that Activities are destroyed while processes are not. For example, you might

[android-developers] OpenGL regular

2012-12-26 Thread bob
When mobile devices get more powerful, will it ever make sense for Android to simply support OpenGL instead of just OpenGL ES? I wouldn't mind being able to use the accum buffer and other regular OpenGL features. -- You received this message because you are subscribed to the Google

[android-developers] Re: Use unrooted Android device to test web site running on desktop, through usb cable?

2012-12-26 Thread Doug
The easiest thing is to put them on the same network and point the mobile browser to the desktop's IP address and port that is hosting the web server. Doug On Tuesday, December 25, 2012 4:24:27 PM UTC-5, David Karr wrote: If I have an unrooted Android device, a USB cable, and a laptop, can I

Re: [android-developers] Re: Use unrooted Android device to test web site running on desktop, through usb cable?

2012-12-26 Thread Robert Greenwalt
I assume Doug meant a wifi network. I'd agree - that's the easiest. Some places don't like random unmanaged wifi AP though. If you have a modern build there is the potential that it supports ethernet via a usb dongle. Most google experience tablets support this. Another possibility is to use

[android-developers] writing a layout w/ standard ICS buttons

2012-12-26 Thread dashman
i've got a dialog layout that has 3 buttons. i change the button labels and count at run-time - so i've got them defined in the layout. i can't seem to get the dfeault ICS button look. Button android:id=@+id/left_button android:layout_weight=1

Re: [android-developers] writing a layout w/ standard ICS buttons

2012-12-26 Thread Mark Murphy
Make sure that your android:targetSdkVersion is set to 11 or higher. Also, make sure that your theme will inherit from Theme.Holo (or some sub-theme of Theme.Holo) on API Level 11+, if you are specifying a theme in your manifest. On Wed, Dec 26, 2012 at 2:18 PM, dashman erjdri...@gmail.com wrote:

Re: [android-developers] writing a layout w/ standard ICS buttons

2012-12-26 Thread dashman
can this be done while maintaining compatibility with pre v11. my minSdkVersion is 4. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group,

Re: [android-developers] writing a layout w/ standard ICS buttons

2012-12-26 Thread Mark Murphy
On Wed, Dec 26, 2012 at 2:53 PM, dashman erjdri...@gmail.com wrote: can this be done while maintaining compatibility with pre v11. Either: -- do not specify a custom theme, or -- specify a set of custom themes, set for the different API levels You can see the latter in action if you create a

[android-developers] Re: Android Live wallpaper launch in jelly bean

2012-12-26 Thread bob
Please see this site: * http://www.vogella.com/articles/AndroidLiveWallpaper/article.html#overview_setting * On Wednesday, December 26, 2012 5:44:33 AM UTC-6, djhacktor wrote: m facing an issue in using *WallpaperManager.**ACTION_CHANGE_LIVE_WALLPAPER *in jb which launch direct live

Re: [android-developers] Re: OnStop and OnDestroy aren`t invoked after calling finish()

2012-12-26 Thread RichardC
Have you experimented with Don't keep activities in Settings Developer options? On Wednesday, December 26, 2012 4:17:06 PM UTC, latimerius wrote: On Wed, Dec 26, 2012 at 2:35 AM, TreKing treki...@gmail.com javascript: wrote: On Tue, Dec 25, 2012 at 3:04 PM, Latimerius

Re: [android-developers] Re: OnStop and OnDestroy aren`t invoked after calling finish()

2012-12-26 Thread Latimerius
On Wed, Dec 26, 2012 at 11:30 PM, RichardC richard.crit...@googlemail.comwrote: Have you experimented with Don't keep activities in Settings Developer options? Nope, I haven't touched that (yet). -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Camera app bombs, using Android Docs examples.

2012-12-26 Thread JDog
Hello I tried to create a simple camera app with code snippets from the google android doc's. I dont know what I'm doing wrong but it bombs on startup. All other code coming from my eclipse ide to android works ok so I know its not that. I'm old Delphi programmer and know I have much to learn,

Re: [android-developers] Re: OnStop and OnDestroy aren`t invoked after calling finish()

2012-12-26 Thread TreKing
On Wed, Dec 26, 2012 at 6:38 AM, Mark Murphy mmur...@commonsware.comwrote: On Tue, Dec 25, 2012 at 8:35 PM, TreKing treking...@gmail.com wrote: I believe it is entirely possible and actually a frequent occurrence that Activities are destroyed while processes are not. For example, you might

Re: [android-developers] google play store reply comments

2012-12-26 Thread TreKing
On Wed, Dec 26, 2012 at 3:46 AM, Salih Gündüz gunduz.sa...@gmail.comwrote: Why I can not reply comments to my app in store? You are not one of Google's hand-picked special developers that can acquire such privileges. Welcome to the club! Is there anyway to reply? 1 - Become one of the

Re: [android-developers] Camera app bombs, using Android Docs examples.

2012-12-26 Thread TreKing
On Wed, Dec 26, 2012 at 5:01 PM, JDog bstrong@gmail.com wrote: I dont know what I'm doing wrong but it bombs on startup. You can't just tell us it bombs and post your code and hope someone will debug this for you. Have you debugged this at all? Do you at least have a stacktrace with an

[android-developers] Re: Can two applications that run in the same process have different STATIC object values?

2012-12-26 Thread Erik
On Sunday, December 23, 2012 1:24:08 AM UTC-8, Lew wrote: I'm confused by your use of the terms application and process as different things. Each Android app runs in its own process. This is incorrect. Applications are allowed to share processes. See

[android-developers] Re: Can two applications that run in the same process have different STATIC object values?

2012-12-26 Thread Lew
Erik wrote: Lew wrote: I'm confused by your use of the terms application and process as different things. Each Android app runs in its own process. This is incorrect. Applications are allowed to share processes. See http://developer.android.com/guide/components/fundamentals.html.

[android-developers] Re: Can two applications that run in the same process have different STATIC object values?

2012-12-26 Thread Lew
Lew wrote: Erik wrote: Lew wrote: I'm confused by your use of the terms application and process as different things. Each Android app runs in its own process. This is incorrect. Applications are allowed to share processes. See

Re: [android-developers] Re: how to query from two unrelated tables and display data in same listview

2012-12-26 Thread Vijay Krishnan
Hi skink, cursors point to different tables and tables have different column names.How do i know that this cursor points to this table? How do i display data from different tables? Regards, vijay.k On Wed, Dec 26, 2012 at 9:48 PM, skink psk...@gmail.com wrote: Vijay

[android-developers] How to start again if some third party task killer has killed my app ?

2012-12-26 Thread Amit Dwivedi
In my App I have several activities which are obviously related to each other. Whenever I am on some activity and the user kills my app by using any task killer. I want to do two things 1. Clear the Notification which I added when the user logged in.. 2. finish all the activities other

[android-developers] Re: How to start again if some third party task killer has killed my app ?

2012-12-26 Thread djhacktor
Read this http://developer.android.com/guide/components/tasks-and-back-stack.html On Thursday, 27 December 2012 11:32:06 UTC+5:30, Amit Dwivedi wrote: In my App I have several activities which are obviously related to each other. Whenever I am on some activity and the user kills my app by

[android-developers] Re: Android Live wallpaper launch in jelly bean

2012-12-26 Thread djhacktor
Closed On Thursday, 27 December 2012 03:58:11 UTC+5:30, bob wrote: Please see this site: * http://www.vogella.com/articles/AndroidLiveWallpaper/article.html#overview_setting * On Wednesday, December 26, 2012 5:44:33 AM UTC-6, djhacktor wrote: m facing an issue in using

[android-developers] Re: Contact shortcuts in Android 2.2: Missing anchor rectangle

2012-12-26 Thread abhay_401
Hi, I am getting the same issue in GingerBread.. If anybody is having on this please help me. On Wednesday, December 26, 2012 9:57:55 PM UTC+5:30, abhay_401 wrote: Hi, How you resolved this issue.. I am also getting the same issue. Help me out to solve this. On Thursday, May

Re: [android-developers] Digest for android-developers@googlegroups.com - 14 Messages in 9 Topics

2012-12-26 Thread santosh.salunke29
TyuSent from my Verizon Wireless 4G LTE Smartphoneandroid-developers@googlegroups.com wrote: Today's Topic Summary Group: http://groups.google.com/group/android-developers/topics How to start again if some third party task killer has killed my app ? [1 Update] how to query from two unrelated

[android-developers] android:imeoptions working behaviour.

2012-12-26 Thread monty
Hello, I have three edittext .and i am using android:imeOptions=actionNext ,with this xml code my edittext contains a next button in landscap mode. but problem is when i select the text in edittext that NEXT button changes to EDIT button ,which has copy,cut,paste option. i want to avoid this