RE: RE: [android-developers] Re: How global is the app market?

2010-06-11 Thread
Can you explain what you said? Am I wrong? _ From: android-developers@googlegroups.com [mailto:android-develop...@googlegroups.com] On Behalf Of a a Sent: Friday, June 11, 2010 4:43 PM To: android-developers@googlegroups.com Subject: Re: RE: [android-developers] Re: How global is the

RE: [android-developers] Re: How global is the app market?

2010-06-10 Thread
Is it really? I think the mmarket is the only one official market of China! You can put your paid version app on mmarket now. -Original Message- From: android-developers@googlegroups.com [mailto:android-develop...@googlegroups.com] On Behalf Of ko5tik Sent: Thursday, June 10, 2010 6:32

RE: [android-developers] Re: TaskAffinity causes new instance being created when startActivity

2010-06-10 Thread
When L starts A at the step 3 ,you want only one A or two instances of A? If only one , use the flag singleTask ,if two, do nothing . Can you describe you problem more exactly? I do not understand you want the L A B in the same task or not. -Original Message- From:

RE: [android-developers] Re: How global is the app market?

2010-06-10 Thread
into Google Translate and get a translated version of the web page... Expect to spend a little time deciphering the translation however :). On 10/06/2010 3:05 AM, 楊健 wrote: Is it really? I think the mmarket is the only one official market of China! You can put your paid version app on mmarket

RE: [android-developers] Problem in getting height of contetn in Webview

2010-06-09 Thread
Did you show the webview in a activity? If you are not show it the getContentHeight() will return 0; Try to call getContentHeight use the WebView reference witch WebViewClient.onPageFinished(WebView view, String url) returned. _ From: android-developers@googlegroups.com

RE: [android-developers] Placing a bitmap image in ImageView

2010-06-09 Thread
Try this method: http://developer.android.com/reference/android/widget/ImageView.html#setScaleType(android.widget.ImageView.ScaleType) setScaleType( http://developer.android.com/reference/android/widget/ImageView.ScaleType.html ImageView.ScaleType scaleType) Controls how the image should

RE: [android-developers] How global is the app market?

2010-06-09 Thread
You must register your application to mmarket of ChinaMobile(http://www.mmarket.com/). -Original Message- From: android-developers@googlegroups.com [mailto:android-develop...@googlegroups.com] On Behalf Of Neilz Sent: Thursday, June 10, 2010 3:27 AM To: Android Developers Subject:

RE: [android-developers] Force Close - Debug

2010-06-09 Thread
What about “SharedPreferences”? Notice that the setting will not be delete even if you update your application ,but when you uninstall the application the setting will be lost. _ From: android-developers@googlegroups.com [mailto:android-develop...@googlegroups.com] On Behalf Of

RE: [android-developers] Images in ListView in wrong places

2010-06-09 Thread
I meet the same problem when I used a class inherit from BaseAdapter , My solution is set the image every time in BaseAdapter.getView(). I think this is the same of if(null!=iv) iv.setImageBitmap(bmp); try to comment out the if(null!=iv) -Original

RE: [android-developers] Force Close - Debug

2010-06-09 Thread
); prefsEditor.commit(); On Wed, Jun 9, 2010 at 8:42 PM, 楊健 youken1...@gmail.com wrote: What about “SharedPreferences”? Notice that the setting will not be delete even if you update your application ,but when you uninstall the application the setting will be lost. _ From: android

RE: [android-developers] Why my application doesn't in application history?

2010-06-07 Thread
I think the new activity is the same application which you are running. Try to launch some other application gallery e.g. _ From: android-developers@googlegroups.com [mailto:android-develop...@googlegroups.com] On Behalf Of Jiang Sent: Tuesday, June 08, 2010 12:38 PM To:

[android-developers] ListView problem

2009-10-15 Thread
Dears, When I try to show a list with items and labels,I create item and labels with different layout by inflater. The problem is when i scroll the list ,part of the items use the wrong layout. Why the layout changes when i scroll the list. Any hint? Best regards!

[android-developers] How to add a label to a list view

2009-10-13 Thread
I try to build a activity with textlabel and item. At first I try to use three textview and three listview. textview listview textview listview textview listview but the scrollbar were three. I want only one scrollbar. How to set the layout to make that possible? Can I make it

[android-developers] How to run Gallrey by a common way?

2009-10-01 Thread
Hey everybody! My question is how to run Gallrey by a common way? I fount that gallrey has different package name on different phone. Is there a way to run Gallrey without package name? By the way, I can run Camera by the intent action INTENT_ACTION_STILL_IMAGE_CAMERA,without pacake name. Best

[android-developers] Re: sqlite can't show chinese words

2009-09-10 Thread
I have try to store japanese and it works well.But the logcat can't show Japanese correctly,maybe you just test under eclipse, did you? -Original Message- From: android-developers@googlegroups.com [mailto:android-develop...@googlegroups.com] On Behalf Of tstanly Sent: Thursday, September

[android-developers] Re: do i need to close cursor?

2009-09-10 Thread
You will see some warning info in logcat if you do not close it . -Original Message- From: android-developers@googlegroups.com [mailto:android-develop...@googlegroups.com] On Behalf Of jerryfan2000 Sent: Thursday, September 10, 2009 4:14 PM To: Android Developers Subject:

[android-developers] Re: Is there any method to read sms and gmail?

2009-09-10 Thread
Thank you very much ,I will try this。 _ From: android-developers@googlegroups.com [mailto:android-develop...@googlegroups.com] On Behalf Of eaindra nilar Sent: Thursday, September 10, 2009 6:59 PM To: android-developers@googlegroups.com Subject: [android-developers] Re: Is there any

[android-developers] Is there any method to read sms and gmail?

2009-09-09 Thread
Hey everybody! Is there any method to read sms and gmail? It seems there is not any provider to read sms and gmail. But in Manifest.permission I found READ_SMS(Allows an application to read SMS messages.). The android.telephony.gsm.SmsManager class allow us to sent a sms but read. If possible

[android-developers] Can I leave some info after my app is uninstalled?

2009-09-03 Thread
Hey everybody! Is there any method to leave some info after my app is uninstalled?For example:file,database,setting etc. Best regards! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] How to get the app info who calls my app?

2009-08-06 Thread
Hey everybody! My question is how to get the app info who calls my app? The function of Activity class,getCallingActivity() and getCallingPackage() can be used only if my app has been called by startActivityForResult(). Is there any other idea to get the info who calls my app? Best regards!

[android-developers] ListView and ListActivity

2009-06-30 Thread
Hey everybody! I create a ListView in my activity and set its ChoiceMode to CHOICE_MODE_SINGLE, I also set its layout to simple_list_item_single_choice. But when i click on it onItemSelected() is never called and getCheckedItemPosition() returns -1. Why? the sample List10.java of ApiDemos uses

[android-developers] Re: TabActivity - OnClickListener not working

2009-06-30 Thread
mListAdapter = new ArrayAdapterString(this, android.R.layout.simple_list_item_single_choice, mStrings); mListView.setAdapter(mListAdapter); mListView.setItemsCanFocus(false); mListView.setChoiceMode(ListView.CHOICE_MODE_SINGLE);

[android-developers] Is the limit of memory heap only 6M?

2009-06-30 Thread
07-01 11:32:02.192: VERBOSE/QualcommCameraHardware(35): state transition QCS_WAITING_JPEG -- QCS_IDLE 07-01 11:32:02.232: ERROR/dalvikvm-heap(395): 6291456-byte external allocation too large for this process. 07-01 11:32:02.232: ERROR/(395): VM won't let us allocate 6291456 bytes 07-01

[android-developers] Re: Is the limit of memory heap only 6M?

2009-06-30 Thread
? 楊健 wrote: 07-01 11:32:02.192: VERBOSE/QualcommCameraHardware(35): state transition QCS_WAITING_JPEG -- QCS_IDLE 07-01 11:32:02.232: ERROR/dalvikvm-heap(395): 6291456-byte external allocation too large for this process. 07-01 11:32:02.232: ERROR/(395): VM won't let us allocate 6291456 bytes

[android-developers] How to save a Bitmap instance to a *.bmp file.

2009-06-27 Thread
Hey everybody ! How can i save a Bitmap instance to a *.bmp file?Anyone knows? Is it strange that we can only save a bitmap instance to a png or jpg file? Best regards! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[android-developers] Re: How to save a Bitmap instance to a *.bmp file.

2009-06-27 Thread
Thank you very much! I think i have to convert the file by myself! On 6月27日, 午後11:52, Mark Murphy mmur...@commonsware.com wrote: 楊健 wrote:  How can i save a Bitmap instance to a *.bmp file?Anyone knows? Option #1: Don't do it. So, for example, if this is a question of uploading data

[android-developers] Re: How to save a Bitmap instance to a *.bmp file.

2009-06-27 Thread
But the images we use in application are instances of Bitmap : ( On 6月28日, 午前2:43, Romain Guy romain...@google.com wrote: BMP is not supported on Android. And why is it strange? PNG and JPG are widely used formats across platforms. On Sat, Jun 27, 2009 at 7:32 AM, 楊健y...@cycomtech.co.jp

[android-developers] Re: How to call an activity of other app from another app

2009-06-25 Thread
I think it do not work unless do something in the target app’s manifest.xml http://developer.android.com/guide/topics/manifest/activity-element.html android:exported Whether or not the activity can be launched by components of other applications - true if it can be, and false if not. If

[android-developers] How to draw text on a bitmap

2009-06-14 Thread
Hi,everybody! Can i draw text on a bitmap? I cannot find any API support this. --~--~-~--~~~---~--~~ 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] Why the intent from Gallery has not picture`s Uri

2009-06-05 Thread
Hi everybody. I tried to handle a picture from Gallery as SDK said: When the user chooses Share from the menus, the system compares the Share request (an Intent object) to available activities (by looking at their intent filters) and displays choices to share. In this case, it matches Email,