[android-developers] How to approach designing a clound sync adapter?

2011-03-29 Thread Moto
account. All this time I'm thinking there has to be an easy way. I just don't want to re-invent the wheel if something already exists... :( Thanks for any tips you might have! -Moto -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Re: Clearning Activity's intent data randomly comes back, why?

2011-02-18 Thread Moto
Don't modify that Intent. It is maintained for you by the system, and the original Intent will be restored whenever the activity is restarted. This is interesting... My activity currently runs as singleTop and I get new intents via onNewIntent(). From what you posted it seems that

Re: [android-developers] Re: Clearning Activity's intent data randomly comes back, why?

2011-02-18 Thread Moto
@Dianne, I'm sorry but I'm a little confused. What I'm understanding is that there is no way to clear the intent of an activity from the system. It can be cleared temporarily by using setIntent(..) but if the activity was to be restarted the previous intent used to open the activity will be

[android-developers] Clearning Activity's intent data randomly comes back, why?

2011-02-17 Thread Moto
I have a media application which starts playback when the intent is sent to the player activity with the following intent extras; data path to the music and type mime/audio format. I pick up the intent data at the player activity execute to start playback and I remove the passed extras from

Re: [android-developers] Clearning Activity's intent data randomly comes back, why?

2011-02-17 Thread Moto
Thanks for your reply. I'll give it a try and see if that helps resolve the issue... -Moto -- 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

[android-developers] SmaliHook.java found on my hacked application.

2011-02-01 Thread Moto
with this particular hack? Please find attached the recovered file found when I decompiled hacked version of my application. Thanks! -Moto -- 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

Re: [android-developers] SmaliHook.java found on my hacked application.

2011-02-01 Thread Moto
creative... -Moto -- 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] How to bring Activity to top of stack and reset it?

2011-01-28 Thread Moto
I'm trying to keep my activity calling flow simple for the user. Always one instance of the activity on the history stack. So using flag FLAG_ACTIVITY_REORDER_TO_FRONThttp://developer.android.com/reference/android/content/Intent.html#FLAG_ACTIVITY_REORDER_TO_FRONT, is perfect! but there is

Re: [android-developers] How to bring Activity to top of stack and reset it?

2011-01-28 Thread Moto
Yes, exactly I understand the behavior. What I'm trying to figure out is what other flags can I use such that the activity can be removed from the history stack brought to the top. When brought to the top it should be reset so that it calls the onCreate(). I just keep trying things and well

Re: [android-developers] How to bring Activity to top of stack and reset it?

2011-01-28 Thread Moto
Not sure you understand the question or I don't understand the process so please let me explain what I think it's happening. Using flag FLAG_ACTIVITY_REORDER_TO_FRONT brings the activities to the front. If already is somewhere in the history stack than it will be brought to the front and if

Re: [android-developers] How to bring Activity to top of stack and reset it?

2011-01-28 Thread Moto
Thanks Kumar for your help. I do understand the activity lifecycle and see your point. I guess I need to take two steps back and think this over... As you suggested to just do the work onResume() I tried getting the passed intent extras but I guess they are not sent to the activity if it's

[android-developers] Re: How to bring Activity to top of stack and reset it?

2011-01-28 Thread Moto
@Kostya and Streets Of Boston Thanks guys that is actually exactly what I was looking for! That's great!! :) -- 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

Re: [android-developers] Re: How to bring Activity to top of stack and reset it?

2011-01-28 Thread Moto
Yep! using android:launchMode=singleTop with implementing the onNewIntent() worked perfect! I assume this also helps the application be a lot faster, responsive, and lot less GC. :) -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

Re: [android-developers] How to bring Activity to top of stack and reset it?

2011-01-28 Thread Moto
Thanks Dianne for your reply. I'm currently using android:launchMode=singleTop and have implemented the onNewIntent(). With that I'm also using the flag FLAG_ACTIVITY_REORDER_TO_FRONThttp://developer.android.com/reference/android/content/Intent.html#FLAG_ACTIVITY_REORDER_TO_FRONT This

[android-developers] Re: How to bring Activity to top of stack and reset it?

2011-01-28 Thread Moto
Thanks man that's exactly what I ended doing! :) -- 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] How to gracefully terminate a remote service process?

2011-01-07 Thread Moto
this since the service might be restarted again... Any help would be greatly apreciated! -Moto -- 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

Re: [android-developers] How to gracefully terminate a remote service process?

2011-01-07 Thread Moto
I guess my knowledge on the subject was not far off... I guess I was being mislead by all these task killers and users complaining... They just assume a visible process is hogging CPU and memory. Well it could on applications that aren't managing things properly. Thanks for your reply --

Re: [android-developers] How to gracefully terminate a remote service process?

2011-01-07 Thread Moto
I kept telling my users I don't want to place an exit button cause it's pointless! If you program the application properly there is no need for an exit button on many type of applications such as mine, a media playback application. I explain users and some understand while other don't... --

[android-developers] Re: Small, Normal, Large and xlarge. How to handle application?

2010-12-31 Thread Moto
Thanks! I'll look over that blog. -Moto On Dec 18, 10:41 am, pk Lam newbal...@gmail.com wrote: have a look at the following blog post, you might get some idea:http://blog.alsutton.com/2010/12/07/android-tablet-phone-uis-in-one-a... -- You received this message because you are subscribed

[android-developers] How to creating Launcher home screen behavior on my app?

2010-12-28 Thread Moto
currently have something that catches swipe events and using animation to slide to the next screen/layout. This is not the behavior I want. I want it to feel smooth and that follows the finger. Any ideas how I could approach at creating such feature? Thanks! -Moto -- You received this message

[android-developers] java.net.SocketException after HTC 4G latest update...

2010-12-19 Thread Moto
); mServerSocket.accept(); The accept seems to get killed without ever giving me a Socket. Any ideas why this might be happening? Thanks! -Moto -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android

[android-developers] Re: java.net.SocketException after HTC 4G latest update...

2010-12-19 Thread Moto
Oops the actual error is: *12-19 13:42:06.939: WARN/System.err(1198): java.net.SocketException: Interrupted system call 12-19 13:42:06.949: WARN/System.err(1198): at org.apache.harmony.luni.platform.OSNetworkSystem.acceptSocketImpl(Native Method) 12-19 13:42:06.949: WARN/System.err(1198):

[android-developers] Re: java.net.SocketException after HTC 4G latest update...

2010-12-19 Thread Moto
Something important to note about this is that when connected to WiFi this issue does not happen. -- 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

[android-developers] Re: java.net.SocketException after HTC 4G latest update...

2010-12-19 Thread Moto
Yes, I have internet access... I can even connect to an URL and fetch a file via code without any issues. This just seems like a weird HTC typical fragmentation issue... :( In the past there was an issue with RTSP servers and WIFI. It would only work when WiFi radio was enabled... -- You

[android-developers] Small, Normal, Large and xlarge. How to handle application?

2010-12-17 Thread Moto
can code some helper classes and such but things become a little tricky and messy. What are your thoughts in respect to this subject? Would you try to keep the app as one to support all these different screen sizes? Or split them? -Moto -- You received this message because you are subscribed

[android-developers] Re: layout editor in 2.3 SDK sucks! Sorry but it does.

2010-12-17 Thread Moto
I believe the new layout has improved but where did the layout move up or down go? I used to be able to select a view under Outline and using little up/down arrows move the view around On Dec 17, 3:32 pm, Tim H. timho...@gmail.com wrote: Hi Xavier, r9 is much improved! I am still seeing

[android-developers] Re: Bluetooth status broadcasts. Why some intents aren't being catch?

2010-12-15 Thread Moto
This thread disappeared from the forum... :( I was able to find it via email only... Anyone can provide some insight about what I'm trying to do? Thanks! -Moto On Dec 14, 3:31 pm, Moto medicalsou...@gmail.com wrote: I'm currently trying to work with bluetooth and I'm having trouble getting

[android-developers] Bluetooth status broadcasts. Why some intents aren't being catch?

2010-12-14 Thread Moto
playing in the background and I want it to be stopped before sound comes out of the phones speakers... Thanks! -Moto -- 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

[android-developers] Best way to provide access to a Service?

2010-12-08 Thread Moto
and information as opposed to aidl? Sorry if my questions aren't making sense... Thanks! -Moto -- 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

[android-developers] Re: Best way to provide access to a Service?

2010-12-08 Thread Moto
I'm bound to it... 2. I would have to provide a service intent to burst service status broadcast so that the activity can be updated with the latest information of the running service. This would work, but is this method recommended? Thanks! -Moto -- You received this message because you

[android-developers] Using cache or sdcard as a temporary buffer. Good idea?

2010-11-19 Thread Moto
a file in cache and discard it when I don't need it? Any tips/look outs from using this methods would be greatly appreciated! -Moto -- 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

[android-developers] Re: Using cache or sdcard as a temporary buffer. Good idea?

2010-11-19 Thread Moto
treking...@gmail.com wrote: On Fri, Nov 19, 2010 at 9:50 AM, Moto medicalsou...@gmail.com wrote: But also read before issues cleaning up the cache after use? What?  I guess I should as if I be able to create a file in cache and discard it when I don't need it? Yes, you can create files

[android-developers] Re: Should I use synchronized for a boolean variable

2010-10-18 Thread Moto
the flag state you should sync the set and get calls... -Moto On Oct 18, 5:50 am, Daniel Drozdzewski daniel.drozdzew...@gmail.com wrote: On Mon, Oct 18, 2010 at 10:21 AM, xeagle xeagle...@gmail.com wrote: Hi, I use a boolean variable flag both in main and child thread. This flag is used

[android-developers] Re: Stolen app on market

2010-10-13 Thread Moto
they got a better solution to spam pirates and all that... -Moto On Oct 13, 8:35 am, JP joachim.pfeif...@gmail.com wrote: On Oct 13, 4:51 am, Edmund Higgins ehiggins...@gmail.com wrote: I would rather have controlled quality in my market than chaotic crap! O well who wouldn't agree. It'll

[android-developers] Re: Obfuscating parts of an application. Wise or not?

2010-10-06 Thread Moto
there is no point in obfuscating the jar, since it could be extracted and reused by some other app. -Moto On Oct 5, 8:25 pm, DanH danhi...@ieee.org wrote: Though I'll admit that his second post makes no sense in that context. On Oct 5, 7:20 pm, Lance Nanek lna...@gmail.com wrote: Why would you think a JAR

[android-developers] Re: The ultimate, killer Android Marketplace replacement

2010-10-06 Thread Moto
Supporting subscription options for some type of apps, not all, wouldn't be a bad idea. -Moto On Oct 6, 10:56 am, Bret Foreman bret.fore...@gmail.com wrote: This can't be solved by single-carrier efforts. A piecemeal solution will be no good at all for developers. There needs to be a single

[android-developers] Re: CPU usage stats

2010-10-06 Thread Moto
I know it's not the same using an actual phone than an emulator, but on the emulator there is an option I believe that shows CPU status... -Moto On Oct 6, 9:58 am, askPrins askpr...@gmail.com wrote: As a developer I would say it is VERY important to measure how efficient your implementation

[android-developers] Re: Testing licensing on emulator.

2010-10-06 Thread Moto
Read the Android Licensing tutorial they cover what you need to do: http://developer.android.com/guide/publishing/licensing.html#acct-signin -Moto On Oct 6, 2:22 am, MB manoj.bi...@gmail.com wrote: Hi, I am testing lvl using the sample  application (after changing package name and uploading

[android-developers] Obfuscating parts of an application. Wise or not?

2010-10-05 Thread Moto
? Is it not as bad as I think? Thanks, -Moto -- 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

[android-developers] Re: Obfuscating parts of an application. Wise or not?

2010-10-05 Thread Moto
Can used jar files be easily extracted from an application by others? I guess that would be my only concern doing this... On Oct 5, 11:26 am, Moto medicalsou...@gmail.com wrote: I'm a bit scared about obfuscating my application completely.  I'm afraid to run into issues where I can't figure out

[android-developers] Re: CRC32 checksum use in order to secure Android LVL Applications

2010-10-01 Thread Moto
... For example: CRC value of the apk = 0xABCDABCD You would store that on your server 0xABCDABCD and use it to make sure nothing was changed inside the app... -Moto On Sep 28, 2:30 am, Asker mallorc...@gmail.com wrote: Hi, Following the examples given by Johns Trevor in order to secure Android

[android-developers] Re: CRC32 checksum use in order to secure Android LVL Applications

2010-10-01 Thread Moto
Might want to read about CRCs... to understand how it works: http://en.wikipedia.org/wiki/Cyclic_redundancy_check On Oct 1, 3:04 pm, Moto medicalsou...@gmail.com wrote: You do a CRC32 over the actual application file, *.apk.  Open the file and get the byte stream. Now it's tricky to do

[android-developers] Re: How to transfer application ownership from one Developer account to another?

2010-10-01 Thread Moto
I'm sure you can't do that... But I could be wrong... -Moto On Oct 1, 12:18 pm, peter yellowwin...@gmail.com wrote: Hello fellow developers, My company is a Hong Kong based company and my app has been hosted by my good friend in America under his Android Market account. Now that Google

[android-developers] How to store app data to gmail account? Is it possible?

2010-09-29 Thread Moto
. Anyone know of a particular Google lab allowing such data? Or other cloud services? Thanks! -Moto -- 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

[android-developers] Re: How to store app data to gmail account? Is it possible?

2010-09-29 Thread Moto
Well hopefully some people in this forum can help :) I found something that could potentially work BUT... You can't update data, you must first delete than upload again, and that can be tricky... http://code.google.com/apis/storage/docs/overview.html On Sep 29, 5:13 pm, Moto medicalsou

[android-developers] Re: How to store app data to gmail account? Is it possible?

2010-09-29 Thread Moto
As you can tell I'm new to this area... I guess the main idea is to sync my applications database to the cloud, and I would like to use the users gmail account to store it. On Sep 29, 5:25 pm, Moto medicalsou...@gmail.com wrote: Well hopefully some people in this forum can help :)  I found

[android-developers] Re: New countries for paid apps! Maybe Ireland will be included??

2010-09-28 Thread Moto
Yeah.. I got it alsobut I really hope they are doing something to reduce the impact of Spam Apps at the same time. I really do hope that that issue gets resolved soon! But not sure if it will during this type of update... My very simple idea to reduce the impact Spam Apps have on the

[android-developers] Re: How to reverse ListView scrolling behavior?

2010-09-17 Thread Moto
Guys, I appreciate your concern but come on, really? You have no idea what I'm trying to do here. This behavior is not intended for regular phone usage. I'm experimenting with different behaviors. I really apreciate if you would help me out and not jump into conclussions :) Thanks! -Moto

[android-developers] Re: How to reverse ListView scrolling behavior?

2010-09-17 Thread Moto
it will not end up being used were users would expect a listview to behave like a list view! :) So please let's not argue about how user friendly the concept is or is not... I just need tips on how to achieve this... Thanks, -Moto On Sep 17, 7:49 am, Kumar Bibek coomar@gmail.com wrote: It's

[android-developers] Re: How to reverse ListView scrolling behavior?

2010-09-17 Thread Moto
than up! ***REMEMBER THIS IS A CASE STUDY*** @TreKing Thanks for at least hinting on a path. I have been trying to intercept the touch events and trying to invert them but it's not really working... I'll continue to test and try to see if I can post some code of what I'm doing. -Moto

[android-developers] Re: How to reverse ListView scrolling behavior?

2010-09-17 Thread Moto
. Certainly - but again, lots of posts come through here where it's *usually* the case that the poster is doing something for the wrong reasons. Clarifying the purpose helps a lot. On Fri, Sep 17, 2010 at 12:06 PM, Moto medicalsou...@gmail.com wrote: I'm essentially doing a small study on user

[android-developers] Re: appbucket: all apps for $9.99 per year, are we just going to watch?

2010-09-17 Thread Moto
I think there is a big difference here. Charging for pirated material and offering it for free. Yes, pirated apps sucks but this is even worse! Makes me so mad that these users are actually charging for my work!! This is a new level of piracy that might be easier to track and target right? The

[android-developers] Re: When is a right time to start placing ads in app (share your experience)

2010-09-16 Thread Moto
out of happy users. :) I think the main idea for us was: Provide a free application that contains just about almost all features enabled with ads and if the user doesn't like ads we give them the choice to buy the app and support our work :) -Moto On Sep 16, 3:31 pm, Michael A. michael.aki

[android-developers] Can't find my posts :(

2010-09-16 Thread Moto
I have had this problem a couple times where I post something and I can never find it again... One time I lucked out because my post was still open on my other computers browser... Anyone have this issues? I'm a bit frustrated... :( -Moto -- You received this message because you

[android-developers] How to reverse ListView scrolling behavior?

2010-09-16 Thread Moto
I have been trying now for a few hours to reverse the scrolling of behavior of the ListView. Essentially when scrolling down with my finger I want the list to scroll up! :) Any tips? Thanks! -Moto -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: appbucket: all apps for $9.99 per year, are we just going to watch?

2010-09-16 Thread Moto
I'm so bothered by this! It's incredibly crazzy! My tracking shows that 300% of my daily new users are not purchased! Its really crazzy Im gonna have to invest in a better copy protection methods :( -Moto On Sep 16, 8:59 pm, mot12 martin.hu...@gmail.com wrote: I had thought more people

[android-developers] Opening control to my app to other developers

2010-09-14 Thread Moto
somewhat make sense if not please ask I'll try to explain better :) Thanks! -Moto -- 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

[android-developers] Active Installs Dropping Like Crazy but Total Downloads Increasing Steadily!

2010-08-26 Thread Moto
an applications popularity and mine is going to be dumped all the way to the bottom if this continues So what's causing this issue? Two theories: 1. I recently allowed to install to SD card. 2. Android Market is broken? Anyone seeing this issues? -Moto -- You received this message because

[android-developers] Re: Active Installs Dropping Like Crazy but Total Downloads Increasing Steadily!

2010-08-26 Thread Moto
Yeah... seeing results drop like that are very discouraging when you work so hard on an app... But I feel much better that it's not only me... Cause it hurts to see those really low numbers... -Moto On Aug 26, 10:22 am, TreKing treking...@gmail.com wrote: On Thu, Aug 26, 2010 at 8:41 AM, Moto

[android-developers] How to catch this browser intent?

2010-08-23 Thread Moto
/ /intent-filter Thanks! -Moto! -- 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

[android-developers] Re: How to catch this browser intent?

2010-08-23 Thread Moto
=[android.intent.category.BROWSABLE] dat=http://listen.di.fm/ public3/liquiddnb.pls cmp=com.android.browser/.BrowserActivity } On Aug 23, 8:12 pm, Moto medicalsou...@gmail.com wrote: Hello, I'm trying to handle the content not supported by the browser but for some reason I can't get my app to catch this intent

[android-developers] Re: How to catch this browser intent?

2010-08-23 Thread Moto
I have also tried the following intent-filter data catch: data android:host=* android:pathPattern=.*\\.pls android:scheme=http / On Aug 23, 8:30 pm, Moto medicalsou...@gmail.com wrote: for some reason it doesn't resolve the mime type?   On other cases I specify

[android-developers] Re: How to catch this browser intent?

2010-08-23 Thread Moto
Well as fast as I posted I resolved the issue! :P Thanks forum.. jejeje.. On Aug 23, 8:34 pm, Moto medicalsou...@gmail.com wrote: I have also tried the following intent-filter data catch:                                 data android:host=* android:pathPattern=.*\\.pls android:scheme=http

[android-developers] Re: LVL found to be easy to crack

2010-08-23 Thread Moto
Well it saved me a load on car insurance! :P It was good while it lasted! let the race begin! But being serious this kind of sucks... :( Poor market sells plus pirating not nice On Aug 23, 9:21 pm, Maps.Huge.Info (Maps API Guru) cor...@gmail.com wrote: We all knew this was going to be a

[android-developers] Re: Any Interview Question

2010-08-22 Thread Moto
on of the big things in Android... Services, Activities what are their differences... Read the whole Android.com site! :P -Moto On Aug 22, 12:28 am, TreKing treking...@gmail.com wrote: On Sat, Aug 21, 2010 at 1:48 PM, Vinay Julme vinayju...@gmail.com wrote: I just love that you follow

[android-developers] Re: Share library

2010-08-22 Thread Moto
(android.content.Intent.ACTION_SEND); shareIntent.setType(text/plain); Moto On Aug 22, 10:53 am, samspade79 samspad...@gmail.com wrote: Hi Mark, What I mean is, rather than writing code that talks to Facebook, Twitter, etc, I wonder if anyone had already released this as a library I can use. I tried googling

[android-developers] Re: enable/dissable fullscreen for lifetime of the app?

2010-08-21 Thread Moto
be clean I'm guessing ether way will have the same performance... Thanks again! -Moto On Aug 20, 5:21 pm, TreKing treking...@gmail.com wrote: On Fri, Aug 20, 2010 at 3:58 PM, Moto medicalsou...@gmail.com wrote: Mmm Activity proxy class? I kind of understand the concept but I'm not following

[android-developers] Re: enable/dissable fullscreen for lifetime of the app?

2010-08-21 Thread Moto
always good to understand the core so I don't fight the current :) Thanks all I'm all set! :) -Moto! On Aug 21, 4:54 pm, Dianne Hackborn hack...@android.com wrote: On Thu, Aug 19, 2010 at 10:27 PM, Kantesh kantesh@gmail.com wrote: this may help u.. try it out..i am not sure

[android-developers] Re: enable/dissable fullscreen for lifetime of the app?

2010-08-20 Thread Moto
? @TreKing Mmm Activity proxy class? I kind of understand the concept but I'm not following well... you have a simple example? Thanks guys... -Moto On Aug 20, 1:34 pm, TreKing treking...@gmail.com wrote: On Thu, Aug 19, 2010 at 5:26 PM, Moto medicalsou...@gmail.com wrote: One way to do it would

[android-developers] enable/dissable fullscreen for lifetime of the app?

2010-08-19 Thread Moto
! -Moto -- 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 options

[android-developers] Re: Why doesn't fillparent work for a child view group inside ScrollView?

2010-08-12 Thread Moto
Thanks Rommain! that was exactly what I needed! Good thing your still around to help us out! :) -Moto! On Aug 12, 12:02 am, Romain Guy romain...@android.com wrote: fill_parent means always be as big as your parent, which makes no sense in a ScrollView. What you want is android:fillViewport

[android-developers] Why doesn't fillparent work for a child view group inside ScrollView?

2010-08-11 Thread Moto
android:layout_height=fill_parent LinearLayout android:layout_width=fill_parent android:layout_height=fill_parent !-- Some content -- /LinearLayout /ScrollView Thanks, -Moto -- You received this message because you are subscribed

[android-developers] Re: How to correctly organize layouts for different screen type?

2010-08-10 Thread Moto
, -Moto! On Aug 9, 4:08 pm, Mark Murphy mmur...@commonsware.com wrote: On Mon, Aug 9, 2010 at 3:41 PM, Moto medicalsou...@gmail.com wrote: Currently I have only 2 layouts that need special attention. The key word there is currently.  My questions... What is the best way to properly handle

[android-developers] Re: How safe is emailing a signed App apk?

2010-08-10 Thread Moto
When ever I get requests from china or korea to localize they always ask for strings.xml. That is all they need... So I suggest if you haven't start putting al your strings in an strings.xml file :) First time sucks but there after is good practice :) -Moto On Aug 10, 2:47 pm, Rootko roo

[android-developers] Help understanding ANR trace?

2010-08-10 Thread Moto
) at dalvik.system.NativeStart.run(Native Method) HeapWorker daemon prio=5 tid=2 VMWAIT | group=system sCount=1 dsCount=0 s=N obj=0x4335c948 self=0x121eb8 | sysTid=5167 nice=0 sched=0/0 cgrp=default handle=1204896 | schedstat=( 242462156 215270991 269 ) at dalvik.system.NativeStart.run(Native Method) Thanks, -Moto

[android-developers] How to correctly organize layouts for different screen type?

2010-08-09 Thread Moto
and over this but still a bit confused... What do you guys do in general? http://developer.android.com/guide/practices/screens_support.html Thanks, Moto -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Android Market Abusive developers...

2010-08-04 Thread Moto
category. -Moto -- 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: Android Market Abusive developers...

2010-08-04 Thread Moto
my application and more importantly the Android Market! -Moto On Aug 4, 12:54 pm, { Devdroid } webnet.andr...@gmail.com wrote: On 4 August 2010 17:30, Moto medicalsou...@gmail.com wrote: I currently have an application that does something useful.  I'm currently overwhelmed by the amount

[android-developers] HTC EVO RTSP issues... Anyone experience issues in this area?

2010-08-03 Thread Moto
I'm currently getting issues with the RTSP client of the HTC EVO running Android 2.2. The purpose of this post is to know if anyone has issues in that area or if there is known bug on this... Just to know it's not only me... :P Thanks! -Moto! -- You received this message because you

[android-developers] Re: HTC EVO RTSP issues... Anyone experience issues in this area?

2010-08-03 Thread Moto
/thread/d... On Aug 3, 7:53 pm, Moto medicalsou...@gmail.com wrote: I'm currently getting issues with the RTSP client of the HTC EVO running Android 2.2. The purpose of this post is to know if anyone has issues in that area or if there is known bug on this... Just to know it's not only

[android-developers] Re: onCreate, onStop..... super.onCreate, super.onStop... called before code or after?

2010-08-02 Thread Moto
, 2010 at 10:26 PM, Moto medicalsou...@gmail.com wrote: This might be a simple question but I'm seeing the super call at the end of the overwritten function and also at the start of the function.  What is recommended? any differences on this? I feel very beginner with this question

[android-developers] Using a new generated Keystone for existing app. Any possible outcomes?

2010-07-31 Thread Moto
Hi, I currently have my application signed using a keystone key I generated. Could I use a new keystone to sign my application for the next update? Any issues that could arise if I use a different keystone? Thanks! -Moto -- You received this message because you are subscribed to the Google

[android-developers] Re: Using a new generated Keystone for existing app. Any possible outcomes?

2010-07-31 Thread Moto
keystone = keystore :P On Jul 31, 6:24 pm, Moto medicalsou...@gmail.com wrote: Hi, I currently have my application signed using a keystone key I generated.  Could I use a new keystone to sign my application for the next update? Any issues that could arise if I use a different keystone

[android-developers] Re: Using a new generated Keystone for existing app. Any possible outcomes?

2010-07-31 Thread Moto
sign the new version without using matching certificates, you will also need to assign a different package name to the application — in this case, the user installs the new version as a completely new application. On Jul 31, 6:26 pm, Moto medicalsou...@gmail.com wrote: keystone = keystore :P

[android-developers] onCreate, onStop..... super.onCreate, super.onStop... called before code or after?

2010-07-31 Thread Moto
) { super.onCreate(); // some code } or @Override protected void onCreate() { // some code super.onCreate(); } -Moto -- You received this message because you are subscribed to the Google

[android-developers] Re: Using SharedPreferences.editor from OnSharedPreferenceChange listener

2010-07-28 Thread Moto
/SharedPreferences.Editor.html -Moto On Jul 28, 3:16 pm, TreKing treking...@gmail.com wrote: On Wed, Jul 28, 2010 at 5:41 AM, { Devdroid } webnet.andr...@gmail.comwrote: Is there a way to notify preferences that some values has changed (i.e. in OnSharedPreferenceChangeListener) so the prefs shall be re-read? Notify

[android-developers] What are the supported formats over RTSP for the MediaPlayer?

2010-07-26 Thread Moto
Does anyone know what formats are supported by the MediaPlayer via RTSP? Would it be the same formats available as suggested by the phone manufactures and Android site? Thanks, -Moto -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Re: ListView and a button inside the list item... How to process long presses?

2010-07-22 Thread Moto
. If/when you get it working using the lead I've provided, would be great if you can document the solution properly in this thread! On Jul 21, 12:51 pm, greg sep...@eduneer.com wrote: implements ListView.OnItemLongClickListener On Jul 20, 10:20 pm, Moto medicalsou...@gmail.com wrote: Hi all

[android-developers] Re: ListView and a button inside the list item... How to process long presses?

2010-07-22 Thread Moto
Hey guys, Well it turns out that in order to allow the ListView to handle the long presses you need to attach a LongClick listener to any button you are listening for click events and return false so that the long press can be propagated down to the parent... -Moto On Jul 21, 2:54 am, metal

[android-developers] Re: ListView and a button inside the list item... How to process long presses?

2010-07-22 Thread Moto
Well a little more than that... you just need to propagate the long press down to the parent it seems... On Jul 23, 12:12 am, Moto medicalsou...@gmail.com wrote: Hey guys, Well it turns out that in order to allow the ListView to handle the long presses you need to attach a LongClick listener

[android-developers] ListView and a button inside the list item... How to process long presses?

2010-07-20 Thread Moto
on this? Thanks! -Moto -- 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

[android-developers] How to update the app's icon LAUNCH activity after an app update?

2010-07-14 Thread Moto
? Thanks! -Moto -- 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 options

[android-developers] Re: How to update the app's icon LAUNCH activity after an app update?

2010-07-14 Thread Moto
, Jul 14, 2010 at 1:32 PM, Moto medicalsou...@gmail.com wrote: I'm currently running into an issue that makes sense but I'm not too sure how to resolve it... Here is the scenario: App v1 icon LAUNCH is set to ActivityMain from the manifest file App v2 icon LAUNCH is set

[android-developers] RTCP BYE packets not supported by the Android Media Framework?

2010-07-09 Thread Moto
1min it completes. The question is: Is RTCP BYE packet supported at all by the Android Media Framework? Any information on this matter is appreciated. -Moto -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Re: CursorAdapter notifyDataSetChanged doesn't work? What am I doing wrong?

2010-07-03 Thread Moto
! -Moto On Jul 2, 4:47 am, Android Development indodr...@gmail.com wrote: I think for getting this callback, you need to call setNotifyOnChange(true). On 7/2/10, Mark Murphy mmur...@commonsware.com wrote: On Thu, Jul 1, 2010 at 10:51 PM, Moto medicalsou...@gmail.com wrote: But not sure if design

[android-developers] Re: CursorAdapter notifyDataSetChanged doesn't work? What am I doing wrong?

2010-07-03 Thread Moto
Ahh just after I posted I think it clicked! So notifyDataSetChanged() seems to be more useful for ListViews adapters that aren't database driven... Such as array of data. The requery is exactly what it says it requeries the data it updates it... Thanks guys! :) On Jul 3, 10:23 pm, Moto

[android-developers] Re: How to remove a HeaderView from a ListView?

2010-07-02 Thread Moto
Thx! sounds good! I'll than just go try to implement another method of adding a header view :) I'll take a look at your sample! -Moto On Jul 2, 2:54 am, Mark Murphy mmur...@commonsware.com wrote: On Thu, Jul 1, 2010 at 11:20 PM, Moto medicalsou...@gmail.com wrote: How can I remove the Header

[android-developers] CursorAdapter notifyDataSetChanged doesn't work? What am I doing wrong?

2010-07-01 Thread Moto
= FavoritesHandler.getCategoryFavorites(getSQLiteInstance(), category); m_favoriteAdapter.changeCursor(c); startManagingCursor(c); Any help is greatly appreciated! -Moto -- You received this message because you are subscribed to the Google Groups Android Developers group

[android-developers] Re: CursorAdapter notifyDataSetChanged doesn't work? What am I doing wrong?

2010-07-01 Thread Moto
Let me add that for the first time now I can update the ListView by doing the following call: m_favoriteAdapter.getCursor().requery(); But not sure if design wise is good? Why doesn't notifyDataSetChanged() work? what's the difference on what I just did? Thanks! On Jul 1, 10:40 pm, Moto

[android-developers] How to remove a HeaderView from a ListView?

2010-07-01 Thread Moto
How can I remove the Header from a ListView? I tried setting the view's visibility to GONE but that just leaves me a blank area... Is there a way to be able to disable the header and than enable it again? Thanks! -Moto -- You received this message because you are subscribed to the Google

  1   2   3   4   >