Gphone.pl, Android, Google, IPhone, Open Social » 2009-04-10

Wiadomości z dnia 2009-04-10

Sortuj wiadomości według: Nazwy | Daty | Losowo

Re: [android-developers] Post subject: Store the data in raw folder of res directory

You cannot modify an APK's resources in-place at runtime. You would need to copy the resource out to some other location (e.g., SD card) and modify it there.
Informacja: 2009-04-10
Czytaj: Re: [android-developers] Post subject: Store the data in raw folder of res directory

Post subject: Store the data in raw folder of res directory

Hello, My application has requirements to store or edit the file data in the file which is available in Raw folder. Can some one tell me how it is possible ? I want to store the audio data in mp3 file which is available in res folder.
Informacja: 2009-04-10
Czytaj: Post subject: Store the data in raw folder of res directory

Programmatically delete a home-screen shortcut

Hi, I have some questions related to Android's home-screen contents: 1) Is there a way to programmatically delete a home-screen shortcut on Android? I know that it can be done manually but I want to do it in code. 2) Is there a directory where all the contents of the home-screen are stored and, if there is, is there a way to update the contents of
Informacja: 2009-04-10
Czytaj: Programmatically delete a home-screen shortcut

Email Configuration - Compose activity

Hi All, Is there anyway i can know is the email application configured correctly, before i fire the intent? Thanks
Informacja: 2009-04-10
Czytaj: Email Configuration - Compose activity

who put an icon in status bar to indicate the mobile network type?

In 1.5, I find an inco in status bar to indicate current network type (2G or 3G). Would you please tell me which app sets this icon in status bar? I'd like to go through the source code... Thank you in advance.
Informacja: 2009-04-10
Czytaj: who put an icon in status bar to indicate the mobile network type?

Re: How to order the items of GridView?

Thanks a lot, Romain.
Informacja: 2009-04-10
Czytaj: Re: How to order the items of GridView?

(pre- & post-) processing raw audio data

I want to develop an app that lets one intercept raw audio data sent for playback (possibly by a different app), and apply audio enhancements over this raw data. Does Cupcake allow such filtering of audio data? If so, which API should I use? I understand this may not be possible at an application level for security
Informacja: 2009-04-10
Czytaj: (pre- & post-) processing raw audio data

Re: [android-developers] How to deploy and bundle third party dynamic library

Questions regarding using the Android source code are best asked on a discussion list pertaining to the Android source code: [link]
Informacja: 2009-04-10
Czytaj: Re: [android-developers] How to deploy and bundle third party dynamic library

How to deploy and bundle third party dynamic library

Hi, If the application needs to use a third party dynamically linked library (.so) file, how to package that as bundle?. Can i follow the samples platform library example? The .so file is built with android toolchain. Will that work even if i have no source code.
Informacja: 2009-04-10
Czytaj: How to deploy and bundle third party dynamic library

Re: Black areas during alpha animation on transparent PNGs.. Help !

Here is the screenshot ... I have compared it.. please take a look and someone help me .... [link] this is just a sample.. on my real application due to the colors used, the blackness appears more..
Informacja: 2009-04-10
Czytaj: Re: Black areas during alpha animation on transparent PNGs.. Help !

Can an Italian company sell apps directly?

Hi, checking the Google Checkout signup process, it seems that only UK and US companies can signup, and so sell apps through Android Market. Is this true? If yes, should a company look for a publisher in UK or US to sell apps? Are there any official plans on when Google will allow companies from
Informacja: 2009-04-10
Czytaj: Can an Italian company sell apps directly?

Re: String->Integer Hashmap alternative

If you mean you map 'String's to 'int's, then yes, you have some overhead because of the autoboxing of Java, making 'int's into 'Integer's. If your map's keys (in this case Strings) can be any possible String, i would just use a Map<String, Integer>. Depending on how you use this map, you should create a TreeMap or a
Informacja: 2009-04-10
Czytaj: Re: String->Integer Hashmap alternative

String->Integer Hashmap alternative

Currently, I'm using a hashmap which maps strings to integers. I've read that using a wrapper for a primitive type in a hashmap has extra cost and was wandering if there is an alternative I could use. I've seen sparsearrays in the sdk, but they map ints to objects but I need the opposite. Is there an alternative to hashmap available for this or
Informacja: 2009-04-10
Czytaj: String->Integer Hashmap alternative

Re: Losing Data on Reboot

If it helps at all, I've discovered that this only happens if my bootup service tries to read certain preferences and install an alarm. I've used this process to install several other alarms, but for some reason the latest alarms I've added have been causing me to lose all my preferences on a reboot.
Informacja: 2009-04-10
Czytaj: Re: Losing Data on Reboot

Facebook ma 200 milionów użytkowników !

Facebook przekroczył 200 milionów użytkowników!! Przyznam, że ten fenomen zaczyna mnie fascynować. Nigdy wcześniej w internecie nie było chyba serwisu o takiej dynamice wzrostu (100 milionów w 8 miesięcy!) przy tak dużej skali i zakładam, że szybko taki nie powstanie. To co jest naprawdę niesamowite w Facebook to jego elastyczność i szybkość adaptacji do nowych warunków, nowych trendów czy też wymagań użytkowników. We will welcome our 200 millionth active user to Facebook some time today, an
Informacja: 2009-04-10
Czytaj: Facebook ma 200 milionów użytkowników !

Re: [android-developers] Re: problems with bitmaps

If you have a reproducible test case, head over to [link] and make it official.
Informacja: 2009-04-10
Czytaj: Re: [android-developers] Re: problems with bitmaps

new NTP client tools on the Android Market

For those of you dealing with time data on the Android - or just want to see an NTP client work, check out the application I just published. It's free of course, and it's called "Navy Clock" It displays local time of the phone, the UTC time of the phone, and the time read from the US Naval Observatory in Washington DC.
Informacja: 2009-04-10
Czytaj: new NTP client tools on the Android Market

Re: Stopping all services..

I see your point and definitely agree. I would really like to see a sleep timer function for the music player though and don't think I would be able to write a whole music player application that could compete with the others out there...
Informacja: 2009-04-10
Czytaj: Re: Stopping all services..

Re: [android-developers] Animation on a view doesn't 'stick' in reality

Yes and no. No because you still need to hide the view yourself. Yes because you can just do this: myView.startAnimation(myAnimat ion); myView.setVisibility(View.INVI SIBLE); // or GONE Android will hide the View and run the animation but still draw the View as long as the animation is running.
Informacja: 2009-04-10
Czytaj: Re: [android-developers] Animation on a view doesn't 'stick' in reality

Animation on a view doesn't 'stick' in reality

Hi I'm using a TranslateAnimation to slide a ViewGroup in and out of screen. However after the animation slides the view out, the transparent view is still 'clickable' in the same place. I used setFillAfter to TRUE thinking that the animation would 'stick' but I can't seem to get the view out of my 'face'.
Informacja: 2009-04-10
Czytaj: Animation on a view doesn't 'stick' in reality

Re: problems with bitmaps

There's been a number of threads on this issue, the BitmapFactory tends to throw this out of memory errors when it really shouldn't, looks like a bug or memory leak. I'm not sure if it's cataloged as an official bug though. Using bitmap.recycle(), and reducing the sample size will mitigate , but not eliminate the problem. Also try reducing
Informacja: 2009-04-10
Czytaj: Re: problems with bitmaps

Re: ListView row not receiving highlight with ImageButton in row

Ok I can see setting it to non-focusable 'solves' the problem but that's not really what I was hoping to do. Well, too bad, the user can't focus but only tap now.
Informacja: 2009-04-10
Czytaj: Re: ListView row not receiving highlight with ImageButton in row

Re: [android-developers] Re: Permissions to install other apps...

That's why apps can't install other apps without the user being involved. I was addressing the first part of the original poster's request, being able to download and run Dalvik code in your own process. In that case the new API will let you do this, though of course you are running the other code as
Informacja: 2009-04-10
Czytaj: Re: [android-developers] Re: Permissions to install other apps...

Re: Permissions to install other apps...

Would not it be somewhat dangerous to allow apps is /data/app folder to install other applications?? An app can just create an infinite loop in which downloads applications which do not require any permission and keep on installing them and fill out the memory space? Birjodh
Informacja: 2009-04-10
Czytaj: Re: Permissions to install other apps...

Re: [android-developers] Re: Exception locking surface - lockCanvas() returns a null?

If you want to use the standard 2d APIs, don't use OpenGL. -- Dianne Hackborn Android framework engineer hack...@android.com Note: please don't send private questions to me, as I don't have time to provide private support, and so won't reply to such e-mails. All such questions should be posted on public forums, where I and others can see and
Informacja: 2009-04-10
Czytaj: Re: [android-developers] Re: Exception locking surface - lockCanvas() returns a null?

Re: [android-developers] More Than One Instance of Application

It brings the currently running instance to the foreground. -- Dianne Hackborn Android framework engineer hack...@android.com Note: please don't send private questions to me, as I don't have time to provide private support, and so won't reply to such e-mails. All such questions should be posted on public forums, where I and others can see and
Informacja: 2009-04-10
Czytaj: Re: [android-developers] More Than One Instance of Application

Re: [android-developers] Stopping all services..

IMHO, that would be a rather significant security issue.
Informacja: 2009-04-10
Czytaj: Re: [android-developers] Stopping all services..

How to determine the amount of characters that will fit into a TextView

I am trying to place only the exact amount of data into a TextView but I need to know how much it can hold. Is there a way to do this based on it's height, width and the textsize?
Informacja: 2009-04-10
Czytaj: How to determine the amount of characters that will fit into a TextView

Re: [android-developers] API Demos APK not running.

You may get better answers to your Android porting questions on a discussion list dedicated to Android porting: [link]
Informacja: 2009-04-10
Czytaj: Re: [android-developers] API Demos APK not running.

Re: [android-developers] sample source code for beginner

You are probably not stupid. There are hundreds of blog posts and anddev.org boards with sample source code. It requires a bit of searching to find what you want, though. There are many open source Android projects on code.google.com and github.com. There are several books on Android, at least some of which have their
Informacja: 2009-04-10
Czytaj: Re: [android-developers] sample source code for beginner

Live Video streaming

HI to all Can anyone knows how Live Video streaming can be done Thanks in advance Nithin N V
Informacja: 2009-04-10
Czytaj: Live Video streaming

Re: When will google post official cupcake SDK

When is Google planning on distributing an SDK that does not have such a bug?
Informacja: 2009-04-10
Czytaj: Re: When will google post official cupcake SDK

Re: [android-developers] Conversion to Dalvik format failed with error

You cannot use Java MediaFramework with Android. -- Romain Guy Android framework engineer romain...@android.com Note: please don't send private questions to me, as I don't have time to provide private support. All such questions should be posted on public forums, where I and others can see and answer them
Informacja: 2009-04-10
Czytaj: Re: [android-developers] Conversion to Dalvik format failed with error

JavaMediaFramework

HI to all..... Is it possible to include JavaMediaFramework for android application....
Informacja: 2009-04-10
Czytaj: JavaMediaFramework

Conversion to Dalvik format failed with error

Hi to all.... I include JMF in my application. When i run my application the following type of error will occurring... [2009-04-09 16:20:03 - nithin] trouble processing "javax/sound/midi/ControllerEv entListener.class": [2009-04-09 16:20:03 - nithin] Attempt to include a core VM class in something other than a core
Informacja: 2009-04-10
Czytaj: Conversion to Dalvik format failed with error

no root access.. how to put file...

I am not able to understand one simple issue.. if there is no root access to file system even to the user who owns the phone then why on earth would the dev guide include commands like adb push <local> sdcard .... when the sdcard of emulator is read only.. Is this some kind of mockery or sarcasm with the users?????
Informacja: 2009-04-10
Czytaj: no root access.. how to put file...

Re: ListView not touchable in my Activity

I don't see any itemClickListener registered ?
Informacja: 2009-04-10
Czytaj: Re: ListView not touchable in my Activity

Re: [android-developers] android.permission.GET_ACCOUNTS

We unfortunately left most of the permission string constants in the SDK, even for ones protecting private APIs. So something being there doesn't mean there is an API for it. -- Dianne Hackborn Android framework engineer hack...@android.com Note: please don't send private questions to me, as I don't have time to
Informacja: 2009-04-10
Czytaj: Re: [android-developers] android.permission.GET_ACCOUNTS

android.permission.GET_ACCOUNTS

Are there any examples of how to use android.permission.GET_ACCOUNT S ? Or is this an unimplimented api? I found this site; [link] Though I haven't been able to get anything to work. I believe JBQ said it was a private api - but I'm not sure why the permission is listed
Informacja: 2009-04-10
Czytaj: android.permission.GET_ACCOUNTS

Re: CONTROL_LOCATION_UPDATES permission failure

Hello Richard, Thanks very much. This is very helpful. I am using the same SDK version but in this case I was not using the SDK. I had been experimenting with LocationListener too. I had been using onLocationChanged. Again, Thanks. Alex Donnini On Apr 9, 7:32 pm, Richard Schilling <richard.rootwirel...@gmail.co m>
Informacja: 2009-04-10
Czytaj: Re: CONTROL_LOCATION_UPDATES permission failure

Re: Animation on a view doesn't 'stick' in reality

Okay I've figured it out. I would personally consider this a bug but not sure if this is how it's meant to be. Basically in onAnimationEnd I had to loop over all children inside the viewgroup (and children of children) and set their visibility to GONE/ INVISIBLE and the buttons stopped getting touch events after animation
Informacja: 2009-04-10
Czytaj: Re: Animation on a view doesn't 'stick' in reality

Re: [android-developers] Re: list of request codes - their names and values?

That should be in your preferences, though. After all, you're the one asking for the ringtone via the RingtonePreference, right? Just open up your SharedPreferences (PreferenceManager.getDefaultS haredPreferences()) and read out the value. Or use Preference.OnPreferenceChangeL istener to be notified when
Informacja: 2009-04-10
Czytaj: Re: [android-developers] Re: list of request codes - their names and values?

speech bubble like in Google Maps

I'm coding an application wich uses the map. The map shows moving Objects. The direction in which objects are move should be(displayed as arrow) the object-image. so i startet with the implementation of the map view. How can i create objects on the map, which (after klicking on them) are able to show their names and also that specific arrows to jump to
Informacja: 2009-04-10
Czytaj: speech bubble like in Google Maps

Re: [android-developers] Re: Stopping all services..

Well, the built-in music player is open source: [link] In principle, you could make a sleep-timer patch and submit it: [link] Admittedly, there is a learning curve for making changes to the source code, more so than with many open source projects, due to the unusual
Informacja: 2009-04-10
Czytaj: Re: [android-developers] Re: Stopping all services..

Are there alternate ways to look up user phone number when TelephonyManager returns null?

Is there a way to look up the user phone number other than TelephonyManager? In my G1, this returns null: // get your phone number TelephonyManager telephonyManager = (TelephonyManager) getSystemService(Context.TELEP HONY_SERVICE); String tel = telephonyManager.getLine1Numbe r();
Informacja: 2009-04-10
Czytaj: Are there alternate ways to look up user phone number when TelephonyManager returns null?

Re: [android-developers] no root access.. how to put file...

Yes, we hate you, and laugh at every pain we can cause. Plus the sdcard provides world read/write access.
Informacja: 2009-04-10
Czytaj: Re: [android-developers] no root access.. how to put file...

Re: [android-developers] Re: Conversion to Dalvik format failed with error

Hi.... I tried in SDK emulator. Even i have Same problem like yours. Till now i didnt run video on emulator.... Thank You Nithin N V
Informacja: 2009-04-10
Czytaj: Re: [android-developers] Re: Conversion to Dalvik format failed with error

RE: [android-developers] Re: When will google post official cupcake SDK

When the fix is in the open source repo I'll roll some new SDKs. As for a date for a Google originated SDK, there's no solid commitment to a date as yet. Al. --- * Written an Android App? - List it at [link] * ====== Funky Android Limited is registered in England & Wales with the
Informacja: 2009-04-10
Czytaj: RE: [android-developers] Re: When will google post official cupcake SDK

showing graph in Application

Hello I want to display graph(time ver distance) in Activity , how should be this achieved in Android. is there any tut available? Thank you
Informacja: 2009-04-10
Czytaj: showing graph in Application

Software Developer’s Journal - Kwiecie

Kolejny numer Software Developer
Informacja: 2009-04-10
Czytaj: Software Developer’s Journal - Kwiecie

Android jako niańka do dziecka

Autor wpisu: Janek , tekst pochodzi ze strony: SimBlog.pl Paweł pisał jakiś czas temu o podobnej aplikacji na Symbiana. Generalnie chodzi o to, że kiedy hałas w otoczeniu osiąga pewną granicę (zdefiniowaną przez nas w decybelach), komórka wykona połączenie na ustawiony numer. Szczerze mówiąc nie widzę innego sensownego zastosowania niż nasłuchiwanie czy dziecko śpi. Ale czy HTC G1 - jedyny telefon z Androidem - nie jest zbyt fajną zabawką, żeby zostawić ją dziecku? Do pobrania tu
Informacja: 2009-04-10
Czytaj: Android jako niańka do dziecka

Handing incoming calls

Hi, I'm having issues using the android.intent.action.ANSWER Intent. From what I understand in the reference documentation, it's an Activity Action, not a Broadcast Action. This means that I can't "wake up" my app by setting a intent-filter on it, it means I can send the intent to ask android to answer an incoming call. But... since an incoming call makes
Informacja: 2009-04-10
Czytaj: Handing incoming calls

Re: [android-beginners] progressDialog

If i understand correctly, you're showing it and closing it in the same thread and in the same method... That seem wrong to me in event driven development. I would have a piloting thread (like the one which instantiate your activity) that launch your long process IN ANOTHER THREAD, and create the
Informacja: 2009-04-10
Czytaj: Re: [android-beginners] progressDialog

progressDialog

Hi everybody I am having a problem displayin a ProgressDialog. I hope someone can show me what I am doing wrong... void doStuff() { myProgressDialog = ProgressDialog.show(layout.get Context(),"Please wait...", "Downloading content...", true); /* Here I do my stuff */ myProgressDialog.dismiss();
Informacja: 2009-04-10
Czytaj: progressDialog

How to use a Handler to launch a Toast (or a dialog) from a thread ?

Hi everybody, I do not understand well the concept behind the Handler. I want to launch a Toaster (or a dialogActivity) from a thread, to be displayed in the main UI of my application. Here is my code: // IN MY ACTIVITY : Handler handler = new Handler(); Thread thread = new SmsishingUtils(this,
Informacja: 2009-04-10
Czytaj: How to use a Handler to launch a Toast (or a dialog) from a thread ?

how to connect Android with Sqlite3.

Dear Group, Actually i m working in an Android application on which i want to connect the Android with Sqlite3.0.i wrote the code for connecting that one,but not connected,plz help me....
Informacja: 2009-04-10
Czytaj: how to connect Android with Sqlite3.

Today New Posting at funfashion4u

Skeletons <[link]> Werewolf <[link]> Under Water Super Market<[link]> Under Water Phone Call<[link]>
Informacja: 2009-04-10
Czytaj: Today New Posting at funfashion4u

Re: How to change the background color of an element in a list ?

Thank you for the informations! It seems to be good hints to start :)
Informacja: 2009-04-10
Czytaj: Re: How to change the background color of an element in a list ?

Re: [android-beginners] How to change the background color of an element in a list ?

You will need to make some changes to your Adapter to accomplish this. If it is ArrayAdapter, you will probably want to override getView(). I have a long series of dated, poorly-formatted blog posts on this: [link] If it is SimpleCursorAdapter, you can either override bindView() or
Informacja: 2009-04-10
Czytaj: Re: [android-beginners] How to change the background color of an element in a list ?

How to change the background color of an element in a list ?

Hi everybody, I've an activity that extends ListActivity. I do a kind of check on all elements of the list and if an element corresponds to my criteria, I would like to put the background of this element in green (by example) or to add any visual effect on this element. How can I modify the background of this element ?
Informacja: 2009-04-10
Czytaj: How to change the background color of an element in a list ?

why ADT can not show the preference dialog in ubuntu

In the properties view of ADT Layout Editor, ImageView have a background property, there is a more button with text "..." in value column,when click it will show me a reference dialog to select a resource int windows ,but int ubuntu there nothing happen. My env is ubuntu 8.10 ,eclipse 3.4 and ADT 0.8
Informacja: 2009-04-10
Czytaj: why ADT can not show the preference dialog in ubuntu

How to add a close button on a WebView

I am invoking a simple WebView going through my own WebViewClient. I want to add a very simple close button so, it goes back to the activity. If I invoke the Webview as a sub activity, it is going back to the parent activity properly. But, in my case I just have simple webview for example (click here for more info) which has a web link that opens
Informacja: 2009-04-10
Czytaj: How to add a close button on a WebView

Emulator boot without the GUI interface, just show the "ADDROID" screen saver

Hi all I had fellow the "To check out the cupcake branch (http:// source.android.com/roadmap/cup cake)" instruction to check out the "cupcake" branch of android. After "make" the cupcake source code, i copy those three image files (ramdisk.img,system.img,userda ta.img) @ /out/target/product/generic/
Informacja: 2009-04-10
Czytaj: Emulator boot without the GUI interface, just show the "ADDROID" screen saver

MVC model state change requires creating an Intent?

Hi, I have a main activity class that launches a couple of my subordinate activities from a tabHost. Periodically (actually when I receive an incoming message on a socket), I want to inform the subordinate activities that application state has changed so that they can refresh their views.
Informacja: 2009-04-10
Czytaj: MVC model state change requires creating an Intent?

Subclassed ImageView does not draw in Gallery View

I am subclassing the ImageView class and adding to the Gallery View. But, nothing seems to get drawn in the expected location; though I can fling through the Gallery list. I added an image from a resource, and it shows up correctly in the Gallery. Any idea on why this may be happening? Here is the code I am using:
Informacja: 2009-04-10
Czytaj: Subclassed ImageView does not draw in Gallery View

Seeking shipping info for dew phone to Australia

Thinking of purchasing an Android Dev Phone, but can't find any info of the price of shipping to Australia. Not wishing to pay $US25 to join the market place just to find pricing I've been searching the web and discussing it on the local Linux User Group mailing list. So far I've found a couple of posts about Sinapore and the UK on this mailing list
Informacja: 2009-04-10
Czytaj: Seeking shipping info for dew phone to Australia

Multicast problem

Hi, I'm trying to develop an application that need to send UDP Multicast packets to the local network. There is a few equipments that respond to this packets and send back some informations. I'm not worried with the server right now, because there is a server on the same network that collect all this multicast data.
Informacja: 2009-04-10
Czytaj: Multicast problem

How to: (new) HTTP API

I've read a lot of tutorials explaining how to use the HTTP Client from the previous Android SDK. With SDK 1.1 r1 this API has totally changed. Is there any tutorial for this new API? Is it possible to interact with a J EE application? I mean, on the one side there is the J EE Application on the Internet, on the other side
Informacja: 2009-04-10
Czytaj: How to: (new) HTTP API

Re: Change the location of the tab in a TabLayout

Bump! Is there a way to do this? This would be incredibly useful when having a tab layout in horizontal screen orientation. The tabs themselves take up a lot of vertical screen space...
Informacja: 2009-04-10
Czytaj: Re: Change the location of the tab in a TabLayout

Restoring the active Activity while resuming the application - sent again

Hello all, I have two activities running: MainActivity and ChildActivity. Whenever the user clicks in the button in MainActivity, the ChildActivity is launched. What I want to do is this: When the active activity is the ChildActivity and the user clicks the home button then relaunch the application (like opening from the
Informacja: 2009-04-10
Czytaj: Restoring the active Activity while resuming the application - sent again

Using GDATA from within Android for calendar access?

Hi, I'm really just a beginner and fiddling a little bit around with java and my G1. I'd like to create a calendar event from the phone and learned, that there is no Android API for the calendar. I thought it should be possible to access the google calendar via web. I googled a bit and found some code to try. If I start it as a java
Informacja: 2009-04-10
Czytaj: Using GDATA from within Android for calendar access?

Re: [android-beginners] how to connect Android with Sqlite3.

haiii i will send some code for go thro in that and make the one object of that one in u r activity class and use this... import android.content.ContentValues; import android.content.Context; import android.database.Cursor; import android.database.SQLException; import android.database.sqlite.SQLite Database;
Informacja: 2009-04-10
Czytaj: Re: [android-beginners] how to connect Android with Sqlite3.

Scrolling TextView without the dimming effect?

When scrolling in a TextView it has an annoying effect that dims the background while scrolling (touch scrolling). This makes the text very hard to read and difficult for the user to know when to stop scrolling. See RoboTop application in the market to see what I mean. I'm not sure what is causing the dimming effect or how to disable it.
Informacja: 2009-04-10
Czytaj: Scrolling TextView without the dimming effect?

Restoring the active Activity while resuming the application

Hello all, I have two activities running: MainActivity and ChildActivity. Whenever the user clicks in the button in MainActivity, the ChildActivity is launched. What I want to do is this: When the active activity is the ChildActivity and the user clicks the home button then relaunch the application (like opening from the
Informacja: 2009-04-10
Czytaj: Restoring the active Activity while resuming the application

How to determine where a CheckedTextView is 'clicked'

Hello, I want to know if a user has selected the text portion or the check box graphic portion of a CheckedTextView. I want different behaviour depending on where they select. If they click on the text then I want to edit the underlying object and if they select the check box then I want to close off the object.
Informacja: 2009-04-10
Czytaj: How to determine where a CheckedTextView is 'clicked'
Strony: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 »

Stronę wygenerowano w 0.1 sek. | Forum, programowanie | Gphone, platforma Google Android | Gabinet stomatologiczny Wrocław