Re: [android-developers] Re: In Textview, how to change the 'selected' color?

2011-10-17 Thread gaurav gupta
Hello , U can try Html.fromhtml tag. Like this line hotelCity = hotel_Name_Str + ","+ ""+ " "+tracks.get(position).getHotelCity()+ ""; then set this string in a Textview. hotelname.setText(Html.fromHtml(hotelCity)); Note : *Here hotelCity and hotel_Name_Str is String and hotelname is TextVie

[android-developers] Re: Grouping same call logs just like google nexus

2011-10-17 Thread appel
Why not look at the source code? If that doesn't help you have to be more specific about your problem. http://www.google.com/codesearch#J8HqCFe1rOo/src/com/android/contacts/RecentCallsListActivity.java&type=cs -- You received this message because you are subscribed to the Google Groups "Androi

[android-developers] Apsalar integration in android application

2011-10-17 Thread gaurav gupta
Hello Guys, I have to integrate Apsalar in my android Application. i am successfully integrate it. but problem is that , i want to check my all activity where user is coming . i have to keep a track that which activity user is using more. How i will manage all the records using Apsalar. In Apsala

[android-developers] Re: In Textview, how to change the 'selected' color?

2011-10-17 Thread Build account
Hello, good to see you again. I had looked into, (but there is limitation which I can create only few selector xml physically...since my app need to set various colors properly depends on situation. Not only dozone of colors. lol) Is there any way to programmtically implement? I need programmatic

Re: [android-developers] Prb: gallery Widget

2011-10-17 Thread gaurav gupta
Hello Sweta, M using ImageAdapter class to customize gallery . In My ImageAdapter class m using these lines. imageView = new ImageView(mContext); imageView.setLayoutParams(new Gallery.LayoutParams(240, 240)); imageView.setScaleType(ImageView.ScaleType.FIT_XY); imageView.setPadding(10, 8, 10, 8)

[android-developers] Problem in Focussing Layout!

2011-10-17 Thread abi
Hi, Layout consists of Text Views and Image Views. If I focus that layout, it automatically focus that text views but not image views. How to remove focus from that text views. Please Suggest... Regards, Peria Abirami.M -- You received this message because you are subscribed to the Google Gro

[android-developers] Prb: gallery Widget

2011-10-17 Thread shweta
Hello, i am using android:spacing(-40) to decrease space in betweem gallery item. the only left side image decrease the space and goes to behind the images but the right side image are overlapped. -- You received this message because you are subscribed to the Google Groups "Android Developers"

[android-developers] Grouping same call logs just like google nexus

2011-10-17 Thread vinay kumar mj
Hi, I'm working on dialer app, and i'm struck with the grouping of call logs which is from same number (just like in google nexus). How to do that, can any one help me Regards. Vinay kumar MJ -- You received this message because you are subscribed to the Google Groups "Android Developers" gro

Re: [android-developers] In Textview, how to change the 'selected' color?

2011-10-17 Thread Justin Anderson
Have you tried looking at a selector? Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Mon, Oct 17, 2011 at 10:42 PM, Build account wrote: > Hello. > > Is there any way to change the color of 'selected' state? > Since I'm trying to use textview as below.

Re: [android-developers] Re: StackOverflowError when calling SQLiteDatabase.openDatabase()

2011-10-17 Thread Hack2me
what happened you guys 2011/10/18 Mark Carter > Absolutely agreed (already) - but the stacktrace does not show the root (at > least not in the Android Developer Console Application Error Reports because > it seems to only show the first 130 calls). > > The interesting question is how/why is open

[android-developers] Re: StackOverflowError when calling SQLiteDatabase.openDatabase()

2011-10-17 Thread Mark Carter
Absolutely agreed (already) - but the stacktrace does not show the root (at least not in the Android Developer Console Application Error Reports because it seems to only show the first 130 calls). The interesting question is how/why is openDatabase() recursively calling itself? -- You receive

[android-developers] In Textview, how to change the 'selected' color?

2011-10-17 Thread Build account
Hello. Is there any way to change the color of 'selected' state? Since I'm trying to use textview as below. - one simple textview with a standard TextAppearance attribute. - with marquee attribute as well. - I have set tv.setSelected(true); for marquee effect. - in this case I want to change the

[android-developers] Re: StackOverflowError when calling SQLiteDatabase.openDatabase()

2011-10-17 Thread William Ferguson
My point is that something has to be calling #openDatabase. It can't be at the root of the stacktrace. On Oct 18, 2:22 pm, Mark Carter wrote: > I presume the reason you don't see my code is because it's fallen off the > list due to the 100+ openDatabase() calls. > > Good thinking about the Uncaug

Re: [android-developers] Re: android.text.format.DateFormat.format performance

2011-10-17 Thread Studio LFP
Thanks for the update! I just sat down and put together a JNI routine that uses strftime in C and I took my formatting from 50%+ of the routine that was populating my view down to 0.2%. I would call that a significant improvement! Here is the code I used: Java Class public class JN

[android-developers] Re: StackOverflowError when calling SQLiteDatabase.openDatabase()

2011-10-17 Thread Mark Carter
I presume the reason you don't see my code is because it's fallen off the list due to the 100+ openDatabase() calls. Good thinking about the UncaughtExceptionHandler (because I do use one) but I just checked and I don't call anything which might lead to an openDatabase() call. Even if I did, wo

[android-developers] Re: StackOverflowError when calling SQLiteDatabase.openDatabase()

2011-10-17 Thread William Ferguson
Shouldn't we be seeing some of your code in the stacktrace? After all, #openDatabase only gets called in response to you accessing a DB. The only way I can see that the OpenDatabase would recur is if you have setup an UncaughtExceptionHandler that is attempting to read/ write something to a databa

[android-developers] Re: StackOverflowError when calling SQLiteDatabase.openDatabase()

2011-10-17 Thread Mark Carter
Can anyone explain the stacktrace to me? It looks like openDatabase() is calling itself in a never-ending loop (line 975) and then this throws a StackOverflowError which is caught in the openDatabase(line 916) method and then logged. Is that right? But then why does the stacktrace stop at java

Re: [android-developers] How can i copy /dev/block/mtdblock0 on my laptop

2011-10-17 Thread Kristoffer Grundström
Do you have root-priveligies? On 2011 10 17 13:26, "luca aliberti" wrote: How can i copy /dev/block/mtdblock0 on my laptop? dd if=/dev/block/mtdblock0 of=/sdcard/system.img bs=2048 is not working !!! adb pull /dev/block/mtdblock0 /home is not working !!! Thanks a lot Regards Luca -- You recei

Re: [android-developers] Re: Resources$NotFoundException report from wild

2011-10-17 Thread TreKing
On Mon, Oct 17, 2011 at 7:56 PM, slipp3ry wrote: > Also the report is from 1 of the ~60 people who have actually paid for the > app (~$2) not a lot I know but it renders the application useless for them > and that makes me feel awful. > It doesn't necessarily render the app useless. Sometimes thi

[android-developers] Re: Resources$NotFoundException report from wild

2011-10-17 Thread slipp3ry
It may be just me but I hate the idea that there is code out there that even doesn't work on one app, it's just something that is likely to crop up again and again. Also the report is from 1 of the ~60 people who have actually paid for the app (~$2) not a lot I know but it renders the application

Re: [android-developers] Resources$NotFoundException report from wild

2011-10-17 Thread TreKing
On Mon, Oct 17, 2011 at 7:47 PM, slipp3ry wrote: > I just released an update and got an exception report from the wild after > someone updated a previously working application. > How many reports? If it was one, I would ignore it. Crazy stuff happens "in the wild", particularly after updates, and

[android-developers] Display Video view in a curved shape

2011-10-17 Thread Chenna
Hi I am doing a live video stream and displaying in video view. But this video view is in rectangle. But i want to display video in a curved shape. How to draw a video view into a required shape. thanks Chenna -- You received this message because you are subscribed to the Google Groups "Android

[android-developers] Resources$NotFoundException report from wild

2011-10-17 Thread slipp3ry
I just released an update and got an exception report from the wild after someone updated a previously working application. The same code works on my phone, the resource is a raw file and not dependant on device, local dependant or anything. I had a similar thing happen before while developing th

Re: [android-developers] NFC tag open market if app not installed

2011-10-17 Thread Mark Murphy
On Mon, Oct 17, 2011 at 7:39 PM, John Seghers wrote: > I've successfully programmed a tag with a market URL, e.g. > market://details?id=com.my.package.name. When the tag is read > (Gingerbread 2.3.6), it will run the market app and go directly to the > application's details page. However, you hav

[android-developers] NFC tag open market if app not installed

2011-10-17 Thread John Seghers
What I want to be able to do is have an NFC tag that launches my app if it is installed, or launches directly to the Android Marketplace if the app is not installed. I've successfully programmed a tag with a market URL, e.g. market://details?id=com.my.package.name. When the tag is read (Gingerbrea

Re: [android-developers] Consumer closed input channel

2011-10-17 Thread Marco Bernasocchi
Hi Dianne, what do you mean by fd? (sorry if I miss a super clear abbreviation). I just got this error, do you have any hints on how to interpret it? thanks a lot I/Qt ( 1402): qt start D/Qt ( 1402): startQtApp D/Qt ( 1402): environmentString "HOME=/data/data/ch.myapp/files TMPDI

Re: [android-developers] Planning to buy Samsung galaxy Si9000 or LG optimus P970 please let me know the best one?

2011-10-17 Thread Jim Graham
On Mon, Oct 17, 2011 at 06:08:55PM -0500, Jim Graham wrote: > I went through the specs for the top five or six. Everything below > is my own opinions, so take it for what it's worth. And as my previous post was on its way to gmail, I saw the Si9000, which I'm guessing is a phone, not a tablet.

Re: [android-developers] Planning to buy Samsung galaxy Si9000 or LG optimus P970 please let me know the best one?

2011-10-17 Thread Jim Graham
Sorry...yes, it's OT, so I'll keep it short. On Mon, Oct 17, 2011 at 01:53:37PM -0600, Justin Anderson wrote: > Looks to me like the best one would be the LG. I went through the specs for the top five or six. Everything below is my own opinions, so take it for what it's worth. All are more or

Re: [android-developers] Re: android.text.format.DateFormat.format performance

2011-10-17 Thread Thierry Legras
I do confirm using Date is about 2x faster. But I tryed using Calendar as Date.getHours/Minutes etc. is deprecated. The good news is that is even faster: Almost 6x faster than my original which was using DateFormat.format Here is my code: private static Calendar sTmpCalendar = Calendar.get

[android-developers] Re: VPN Connectivity using android.net.vpn apis

2011-10-17 Thread Kishore
I was able to finally get a successful VPN connection to a PPTP VPN profile. L2TP PSK works sometimes, but cannot get it to work consistently. No luck with L2TP IPSEC CRT at all. PPTP is the only protocol I'm able to connect to consistently. Any branch of VPN source code 2.0_r1 or higher seems to

Re: [android-developers] Adding TableRow on top of TableLayout

2011-10-17 Thread Duygu Kahraman
Hi; maybe this is helpful for you http://developer.android.com/resources/tutorials/views/hello-tabwidget.html 2011/10/17 Nicolás Mariano Obregón > PS: In my code I use *table.addView(row,1); *because the 0 element is a > title... > > > __ > Saludos.- > Nicolás Mariano Obregó

Re: [android-developers] Adding TableRow on top of TableLayout

2011-10-17 Thread Nicolás Mariano Obregón
PS: In my code I use *table.addView(row,1); *because the 0 element is a title... __ Saludos.- Nicolás Mariano Obregón nmobre...@gmail.com El 17 de octubre de 201

Re: [android-developers] Adding TableRow on top of TableLayout

2011-10-17 Thread Nicolás Mariano Obregón
Sorry if I wasn't clear enough. I meant how did I add a new TableRow in the first place of a TableLayout. After I sent my question I realized that I could write *table.addView(row,1); *and that would do it. [?] Thanks anyway!! __ Saludos.- Nicolás Mariano Obregón nmobre...@gmai

Re: [android-developers] Custom Gallery Selection

2011-10-17 Thread Justin Anderson
Have you tried manually setting the selection after initialization? http://developer.android.com/reference/android/widget/AbsSpinner.html#setSelection%28int,%20boolean%29 Not sure if that will work but it seems I've had to do that in the past... Thanks, Justin Anderson MagouyaWare Developer http:

Re: [android-developers] Planning to buy Samsung galaxy Si9000 or LG optimus P970 please let me know the best one?

2011-10-17 Thread Justin Anderson
Eenie meenie minie moh... Catch a tiger by his toe... If he hollers let him go... And you are not it... Looks to me like the best one would be the LG. Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Thu, Oct 13, 2011 at 11:22 AM, Best Rek wrote: > Pla

Re: [android-developers] videos uploading in android

2011-10-17 Thread Justin Anderson
> Is there any site to provide this functionality. Youtube... Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Fri, Oct 14, 2011 at 12:26 AM, ravi wrote: > Hi, > > my requiremet is from my application we can upload videos, who ever > instal the applica

Re: [android-developers] How to make a section of a widget background like a button

2011-10-17 Thread Justin Anderson
*> I want to make a widget that has a background that has three sections > that can be clicked and it acts as if a button was pressed...* Cool, sounds like fun > *Oh and is there a way to make it place an image on the background at a > specific location? * Probably... Note: Until you provide a l

Re: [android-developers] GPS logging

2011-10-17 Thread Mark Murphy
On Mon, Oct 17, 2011 at 2:57 PM, Ab Caballero wrote: > is there someway I can grab data > once a minute for the vehicle location but also grab a location fix > when a certain key is pressed? Call getLastKnownLocation() when the key is pressed. Though, if this is to be used by drivers, I assume th

[android-developers] GPS logging

2011-10-17 Thread Ab Caballero
Hi, I'm using requestLocationUpdates() to update the location of a vehicle and I only need to update its location every minute or so. So I have the parameters set accordingly. However, I also want to use the location service to allow a driver to log and time stamp events throughout his journey an

[android-developers] GPS logging

2011-10-17 Thread Ab Caballero
Hi, I'm using requestLocationUpdates() to update the location of a vehicle and I only need to update its location every minute or so. So I have the parameters set accordingly. However, I also want to use the location service to allow a driver to log and time stamp events throughout his journey an

[android-developers] Re: RFID card reader

2011-10-17 Thread IcedNet
No links (we did it in house) but you can do it with a USB reader and an Acer A500 tablet -- best match we found. Peace, Dan On Oct 17, 1:13 pm, Studio LFP wrote: > Unless there is a Bluetooth version, you would probably need to use a tablet > (until ICS) and use the USB functionality in API Ver

[android-developers] Re: RFID card reader

2011-10-17 Thread Studio LFP
Unless there is a Bluetooth version, you would probably need to use a tablet (until ICS) and use the USB functionality in API Version 12 and above: If the RFID reader acts as an input device (like a barcode scanner), you can just plug it in and it should work. I've used USB barcode scanners on m

Re: [android-developers]

2011-10-17 Thread MComputing Lab
Where is your tomcat server? Where is your excel file? And where is Android? On 17 Oct 2011 15:11, "johny basha" wrote: > Dear All, > > i want an example, how the data can be retrieved from the external file. > i.e (EXCEL) in TOMCAT server... In android > > -- > You received this message beca

Re: [android-developers] timer for implementing projectile motion

2011-10-17 Thread Justin Anderson
*> Can anyone please suggest me the type of android's predefined timer > to be used for implementing projectile motion or do I need to write a > custom timer.* java.util.Timer java.util.TimerTask android.os.CountDownTimer *Note: I found these by going to developer.android.com and typing "Timer"

Re: [android-developers] Re: Problem while applying custome theme.

2011-10-17 Thread Justin Anderson
*> If you want your style to be used as theme ,you have to put your style > in theme.xml not style.xml.This you can find developer's guide also.* This is not correct... According to the developer's guide ( http://developer.android.com/guide/topics/ui/themes.html), the name of the file is arbitrary

[android-developers] Standard paddings for custom preference

2011-10-17 Thread garaus
Hi everybody, This question sooner for android team, because searching for the answer and asking on stackoverflow didn't give a result. Layout of preferences has paddings. On different devices they are different. I created a custom preference, without paddings it doesn't look consistent with other

[android-developers] Re: Problem while applying custome theme.

2011-10-17 Thread gyanu maharjan
If you want your style to be used as theme ,you have to put your style in theme.xml not style.xml.This you can find developer's guide also. On Oct 17, 6:30 pm, Amit wrote: > I have a PreferenceActivity which displays items in a list view. I > applied theme as Theme.Dialog in AndroidManifest.xml a

Re: [android-developers]

2011-10-17 Thread Justin Anderson
http://www.catb.org/~esr/faqs/smart-questions.html Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Mon, Oct 17, 2011 at 3:40 AM, johny basha wrote: > Dear All, > > i want an example, how the data can be retrieved from the external file. > i.e (EXCEL) i

[android-developers] Re: StackOverflowError when calling SQLiteDatabase.openDatabase()

2011-10-17 Thread lbendlin
Low memory sounds about right. Flash player occupies 17 MB of RAM. -- 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 andro

Re: [android-developers] push notifications in arabic

2011-10-17 Thread christophe zoghbi
hey i used this link ( http://www.ipragmatech.com/power-mobile-app-android-push-notification-c2dm.html) and downloaded the files at the end of the article. you have a client-side project and a server-side (coded in Java) and its really a great tutorial. you can also check the link below: http:

Re: [android-developers] Re: How to stop generation of code from .apk

2011-10-17 Thread sajjan jyothi
Move business logic to server rather than apk. On Mon, Oct 17, 2011 at 1:44 PM, Subin Sebastian wrote: > @Dileep, > > :) Read lbendlin's mail again... > > On Mon, Oct 17, 2011 at 5:55 PM, dileep wrote: > >> Thanks Ibendlin. >> How not to put code into .apk? >> Regards >> Dileep >> >> On Oct 17, 4

Re: [android-developers] push notifications in arabic

2011-10-17 Thread Ravinder Reddy
Hi, Am new to push notifications, can u send me some links or any usefull stuff to implement the push notifications. Thank you. On Mon, Oct 17, 2011 at 7:16 PM, christophe zoghbi < christophe.zog...@gmail.com> wrote: > hi im developing an application for a newspaper in arabic and ive > impl

[android-developers] push notifications in arabic

2011-10-17 Thread christophe zoghbi
hi im developing an application for a newspaper in arabic and ive implemented push notifications for breaking news, the push works great but i have a problem with the arabic text being sent with the push... when the client receives the message the arabic letters are replaced with question marks

[android-developers] Problem while applying custome theme.

2011-10-17 Thread Amit
I have a PreferenceActivity which displays items in a list view. I applied theme as Theme.Dialog in AndroidManifest.xml and it looks like a dialog with black color background. To change the background I did the following changes: style.xml @color/bg_

Re: [android-developers] android database

2011-10-17 Thread TreKing
On Mon, Oct 17, 2011 at 4:30 AM, Samuel wrote: > > I would like to start learning database programming in android. > What the best database and also free? > Do you have any recommendations of book regarding android database > programming? http://developer.android.com/reference/android/database/

[android-developers] Re: Add text signature to the email

2011-10-17 Thread viktor
Thanks! On 17 Жов, 14:38, Mark Murphy wrote: > On Mon, Oct 17, 2011 at 6:17 AM, viktor wrote: > > Hi is it possible to add some signature to the email? > > > Some plain text. > > > Maybe there is some tricks to replace common email signature (sent > > from Android ...)? > > No. > > Email clients

[android-developers] StackOverflowError when calling SQLiteDatabase.openDatabase()

2011-10-17 Thread Mark Carter
I just received this crash report from a user running SGS2 (10|GT-I9100|GINGERBREAD.ZNKG5.ownhereSGS2.v1.2.4): java.lang.StackOverflowError at java.lang.AbstractStringBuilder.append0(AbstractStringBuilder.java:132) at java.lang.StringBuffer.append(StringBuffer.java:278) at java.io.StringWriter.wr

[android-developers] Re: MotionEvent touch events

2011-10-17 Thread loril...@gmail.com
I'm not using paint or canvas, I'm using openGL and I need to draw a bitmap on all touch points (it is not a solid color bitmap but has a texture in it). On Oct 17, 4:58 pm, Aks wrote: > Use drawline() in ACTION_MOVE instead of drawPoint() ... -- You received this message because you are subscr

[android-developers] Imageview zooming and panning with multiple device?

2011-10-17 Thread Hitendrasinh Gohil
Hi, How to deal with zoomin/zoomout and panning for multiple device? Like i have code that works fine with samsung galaxy tab and motorola milestone but didn't work on sony xperia x8,samsung galaxy fit etc. so how we can define common functionality that works on multitouch and non-multitouch de

Re: [android-developers] Re: How to stop generation of code from .apk

2011-10-17 Thread Subin Sebastian
@Dileep, :) Read lbendlin's mail again... On Mon, Oct 17, 2011 at 5:55 PM, dileep wrote: > Thanks Ibendlin. > How not to put code into .apk? > Regards > Dileep > > On Oct 17, 4:43 pm, lbendlin wrote: > > You cannot prevent this from happening. The only way to stop code > generation > > from .a

[android-developers] Re: How to stop generation of code from .apk

2011-10-17 Thread dileep
Thanks Ibendlin. How not to put code into .apk? Regards Dileep On Oct 17, 4:43 pm, lbendlin wrote: > You cannot prevent this from happening. The only way to stop code generation > from .apk is not to put the code into the .apk. If you have a client/server > app, move more logic to the server. --

[android-developers] Re: How to stop generation of code from .apk

2011-10-17 Thread dileep
Thanks Mark. On Oct 17, 4:40 pm, Mark Murphy wrote: > On Mon, Oct 17, 2011 at 3:16 AM, dileep wrote: > > My application has been gone for security audit and those guys are > > able to generate codes and classes using some tool from .apk. > > Is there anyway to stop this in android? > > No. Anyth

Re: [android-developers] Re: How can i copy /dev/block/mtdblock0 on my laptop

2011-10-17 Thread Mark Murphy
On Mon, Oct 17, 2011 at 7:48 AM, luca aliberti wrote: > I'm talking about an Android device. That's nice. > I need that partition for forensic purpose but i am not able to copy > it. I repeat: this has nothing to do with Android SDK development, and therefore belongs on some other list. -- Ma

[android-developers] Re: MotionEvent touch events

2011-10-17 Thread Aks
Use drawline() in ACTION_MOVE instead of drawPoint() ... -- 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-develop

[android-developers] Re: How can i copy /dev/block/mtdblock0 on my laptop

2011-10-17 Thread luca aliberti
I'm talking about an Android device. I need that partition for forensic purpose but i am not able to copy it. On Oct 17, 12:41 pm, Mark Murphy wrote: > This has nothing to do with Android SDK development, and therefore > presumably belongs on some other list. > > > > > > > > > > On Mon, Oct 17, 2

[android-developers] Re: How to stop generation of code from .apk

2011-10-17 Thread lbendlin
You cannot prevent this from happening. The only way to stop code generation from .apk is not to put the code into the .apk. If you have a client/server app, move more logic to the server. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. T

Re: [android-developers] How can i copy /dev/block/mtdblock0 on my laptop

2011-10-17 Thread Mark Murphy
This has nothing to do with Android SDK development, and therefore presumably belongs on some other list. On Mon, Oct 17, 2011 at 7:24 AM, luca aliberti wrote: > How can i copy /dev/block/mtdblock0 on my laptop? > > dd if=/dev/block/mtdblock0 of=/sdcard/system.img bs=2048 is not > working !!! > a

Re: [android-developers] How to stop generation of code from .apk

2011-10-17 Thread Mark Murphy
On Mon, Oct 17, 2011 at 3:16 AM, dileep wrote: > My application has been gone for security audit and those guys are > able to generate codes and classes using some tool from .apk. > Is there anyway to stop this in android? No. Anything can be reverse-engineered. This is not unique to Android. Us

Re: [android-developers] Add text signature to the email

2011-10-17 Thread Mark Murphy
On Mon, Oct 17, 2011 at 6:17 AM, viktor wrote: > Hi is it possible to add some signature to the email? > > Some plain text. > > Maybe there is some tricks to replace common email signature (sent > from Android ...)? No. Email clients are applications. They are not part of the operating system. H

[android-developers] How can i copy /dev/block/mtdblock0 on my laptop

2011-10-17 Thread luca aliberti
How can i copy /dev/block/mtdblock0 on my laptop? dd if=/dev/block/mtdblock0 of=/sdcard/system.img bs=2048 is not working !!! adb pull /dev/block/mtdblock0 /home is not working !!! Thanks a lot Regards Luca -- You received this message because you are subscribed to the Google Groups "Android De

[android-developers] Account Manager + OpenID

2011-10-17 Thread Jay
Several related questions about the account infrastructure: Can a third party app use the account API to request a token for and login to a Google service using the stored credentials? Examples I have found seem to suggest yes, though I have also read several places that the account back end and r

Re: [android-developers] sorting the listview

2011-10-17 Thread Subin Sebastian
Hi Vani, Hope you will probably be using an array list in your application. I cannot specifically answer you unless I see the code. Anyway, if you are using ArrayList type implementation, sort the list using a getter method in YourDataType class. Then you can adapt the data into the list view. You

[android-developers] Add text signature to the email

2011-10-17 Thread viktor
Hi is it possible to add some signature to the email? Some plain text. Maybe there is some tricks to replace common email signature (sent from Android ...)? Mark Murphy you are great expert of Android you should know if this possible. -- You received this message because you are subscribed to

[android-developers]

2011-10-17 Thread johny basha
Dear All, i want an example, how the data can be retrieved from the external file. i.e (EXCEL) in TOMCAT server... In android -- 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@googlegro

[android-developers] android database

2011-10-17 Thread Samuel
Hi, I would like to start learning database programming in android. What the best database and also free? Do you have any recommendations of book regarding android database programming? Thanks alot, Samuel -- You received this message because you are subscribed to the Google Groups "Android Dev

[android-developers] Re: flurry analytics in android

2011-10-17 Thread Oli Wright
Go to their website, register an app and download the SDK. It's a simple jar to include, and it comes with the basic instructions for how to implement when you get the SDK and the application key. -- You received this message because you are subscribed to the Google Groups "Android Developers"

Re: [android-developers] Re: Scenario where initLoader() does not call onLoadFinished()

2011-10-17 Thread kaciula
However, if I compile it using API Level 7 but run it on a tablet emulator I still can reproduce the problem. I thought that if you used the acl, when running on a honeycomb device, the built-in fragment implementation would be used. But I see that this is not the case here. Regarding the confi

[android-developers] flurry analytics in android

2011-10-17 Thread vani reddy
Hi friends, Can you please tell me or send any links of how to integrate flurry analytics in android? -- Regards, Vani Reddy -- 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@googlegro

Re: [android-developers] sorting the listview

2011-10-17 Thread vani reddy
Hi Subin, I am using custom listview , it contains title, location and date format in the form of Friday, Aug 12, 2011.,Can u tell me how to sort the list by date ? On Sat, Oct 15, 2011 at 8:18 AM, Subin Sebastian wrote: > @Vani, > > It is not clear that what data you are adapting to the ListVie

[android-developers] RFID card reader

2011-10-17 Thread nageswara rao rajana
Hi, I want to develop application which need to read data from external RFID card reader. So, my doubt is it possible to connect external RFID card reader to android mobile. If so please provide links related to it. Thanking you, Nagu. -- You received this message because

[android-developers] Re: Add Admob in PreferenceScreen at LiveWallpaper setting screen

2011-10-17 Thread Perry168
Learn more is better. :) On 10月17日, 上午11時02分, Nikolay Elenkov wrote: > On Mon, Oct 17, 2011 at 11:44 AM, Perry168 wrote: > > I am very upset. The Admob haven't come out too. > > Too bad :) Consider that your users will open the preferences activity > at most a couple of times. Displaying ads the

[android-developers] Re: Option to unlock the boot loader for Sony Ericsson Android Gingerbread phones now available.

2011-10-17 Thread Carl
Hi Just a few words from our side. We have listed the latest Sony Ericsson Xperia smartphones and respective key press on unlockbootloader.sonyericsson.com Some people reported difficulties getting the drivers right with fastboot under Windows 7 and the XDA-developers community made the fastboot

[android-developers] Re: Can't respond to user comments

2011-10-17 Thread Peter Webb
If it is for a paid app, you can use the payments system to contact the poster and ask them to change their comment. I have tried this a couple of times; nobody does. I guess the people who make these sorts of comments don't care if they are wrong. Once the comment is no longer in the most recent

[android-developers] help : in call recorder i get receiving voice is very low....

2011-10-17 Thread GopalaKrishnan D
help : in call recorder i get receiving voice is very low how to increase the voice,.. i'm using following code for recording... MediaRecorder recorder = new MediaRecorder(); recorder.setAudioSource(MediaRecorder.AudioSource.MIC); recorder.setOutputFormat(MediaRecorder.OutputForm

[android-developers] How to stop generation of code from .apk

2011-10-17 Thread dileep
Hi, My application has been gone for security audit and those guys are able to generate codes and classes using some tool from .apk. Is there anyway to stop this in android?Means,no one should be able to generate the code from .apk file. Any help will be highly appreciated. Regards Dileep -- You