Re: [android-developers] Cant unenroll/uninstall Android N beta

2016-03-21 Thread Jez San
ped you? > > Thanks, > > On Sunday, 20 March 2016 10:29:13 UTC, Jez San wrote: > i finally managed to get my Nexus 6P back to Android 6.0. i managed to > activate my Fi account in the end by moving locations. the place where i > tried to activate (many times) must not have

Re: [android-developers] Re: Cant unenroll/uninstall Android N beta

2016-03-20 Thread Jez San
you ever received the OTA? > > Thanks, > > On Friday, 11 March 2016 20:02:18 UTC, Jez San wrote: > Hi - > > can anyone offer help... Device: stock nexus 6p. > > i enrolled the device and installed the beta yesterday but i can't get > certain things working (pr

[android-developers] Cant unenroll/uninstall Android N beta

2016-03-11 Thread Jez San
Hi - can anyone offer help... Device: stock nexus 6p. i enrolled the device and installed the beta yesterday but i can't get certain things working (project Fi and various apps etc)... so i tried to UnEnroll the device. it says when you unenroll it'll quickly do an OTA update back to the lat

Re: [android-developers] Android App using Accelerometer and Google Maps

2016-03-04 Thread Monte San
On Friday, March 4, 2016 at 1:24:32 AM UTC+5:30, TreKing wrote: > > > On Fri, Feb 26, 2016 at 8:19 AM, Monte San > wrote: > >> Is this project technically feasible? >> > > Possibly. Depends on what you mean by "send a message with the phones > positio

[android-developers] Android App using Accelerometer and Google Maps

2016-02-26 Thread Monte San
I want to develop an app that reads the accelerometric values(of the phone's accelerometer) and on passing a certain threshold value of accelerometer, it should send a message with the phones position in Google Maps co-ordinates. Is this project technically feasible? I can develop an app that re

[android-developers] Re: Flexible Relative Layout

2012-05-03 Thread conde san wa hansamu
"... to call removeAllViews() on the RelativeLayout and simply rebuild all of its child widgets in the desired order..." when i called them? when I click the button? hmm..do you have any tutorial or sample for this one? couse i'm a newbie in android developer ^^ thanks On May 3, 3:34 pm, "Jason

[android-developers] Flexible Relative Layout

2012-05-02 Thread conde san wa hansamu
Hi guys, i want to make the flexible relative layout, but in one init.. I mean like this, for the example,I create the image and put to the center of screen. and i have 2 other buttons, they are Button "Top" and Button "Bottom". when i click the Button "Top", the image position will change to t

[android-developers] Re: How to change default HIPRI connection expiry?

2012-03-23 Thread San
Hey flumby, Did you get any solution? I am also facing the same issue... San On Mar 2, 11:08 pm, flumby wrote: > Has anyone played with TYPE_MOBILE_HIPRI? Is there a way to set the > RestoreDefaultNetworkDelay or any other way to increase the duration > of HIPRI connection? > >

[android-developers] Re: Android File transfer / sharing APIs

2012-01-10 Thread San
Just to be more accurate, the file transfer or sharing shall be over Wi-Fi Direct. On Jan 10, 12:13 pm, San wrote: > The file transfer could be between Android and non-Android devices or > PCs or just between Android devices over Wi-Fi. Are there any APIs > available to perform the file

[android-developers] Re: Android File transfer / sharing APIs

2012-01-10 Thread San
The file transfer could be between Android and non-Android devices or PCs or just between Android devices over Wi-Fi. Are there any APIs available to perform the file transfer (I am not looking for third party libraries or applications). Looking specifically for APIs from Google. Thanks San On

[android-developers] Android File transfer / sharing APIs

2012-01-10 Thread San
Are there any file transfer or file sharing APIs available in Android. Tried to look around but could not figure it out, which is why I am asking this question on this forum. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this g

[android-developers] Re: how can i get data value from ArrayList> weatherlist to string

2011-09-13 Thread Jhew SAN
I want to get value from weatherlist to write in XML -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+

[android-developers] how can i get data value from ArrayList> weatherlist to string

2011-09-13 Thread Jhew SAN
listViewInfo.setOnItemClickListener(new OnItemClickListener() { @Override public void onItemClick(AdapterView a, View v, final int position, long id) { // TODO Auto-generated method stub AlertDialog.Builder adb = new AlertDialog.Builder( EditCity.this); adb.setTitle("Delete?"); adb.setMessage("Are

[android-developers] How to delete tag in XmlSerializer when i remove from listview

2011-09-13 Thread Jhew SAN
package demo.weatherforecast.main; import java.io.File; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.util.ArrayList; import java.util.HashMap; import java.util.Iterator; import org.xmlpull.v1.XmlSerializer; import android.app.Acti

[android-developers] How can i remove item in listview

2011-09-12 Thread Jhew SAN
listViewInfo = (ListView)findViewById(R.id.listView1); tempListAdapter = new SimpleAdapter(this, weatherlist, R.layout.list_row, new String[] {"city", "low", "high"}, new int[] {R.id.CITY_CELL, R.id.LOW_CELL, R.id.HIGH_CELL}); listViewInfo.setAdapter(tempListAdapter); tempUpd

[android-developers] how to make iteration XmlSerializer for store data

2011-09-06 Thread Jhew SAN
File newxmlfile = new File("/sdcard/sss.xml"); try{ newxmlfile.createNewFile(); }catch(IOException e){ Log.e("IOException", "exception in createNewFile() method"); } FileOutputStream fileos = null; try{

[android-developers] how to loop XmlSerializer

2011-09-04 Thread Jhew SAN
This is for 1 time File newxmlfile = new File("/sdcard/new.xml"); try{ newxmlfile.createNewFile(); }catch(IOException e){ Log.e("IOException", "exception in createNewFile() method"); } FileOutputStream fileos = null;

[android-developers] i do weather forecast and have problem about add city

2011-09-03 Thread Jhew SAN
i can only add city one line now i get data from google how can i save data and add city delete city e mail tawisak.ruksu...@gmail.com -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-develope

[android-developers] MODE_APPEND can not use

2011-09-01 Thread Jhew SAN
@Override public View getView(int position, View convertView, ViewGroup parent) { // TODO Auto-generated method stub if(convertView==null){ if(convertView==null){ convertView = (LinearLayout)layoutInflater.inflate(R.layout.searchlayout, null); TextView tx1 = (TextView)convertView.findViewById(R.i

[android-developers] Re: I implement for delete row from listview but have force close

2011-09-01 Thread Jhew SAN
how can i change that line? -- 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.c

[android-developers] Re: I implement for delete row from listview but have force close

2011-09-01 Thread Jhew SAN
adap.remove(); don't have have only adapter.registerDataSetObserver(); -- 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] Re: I implement for delete row from listview but have force close

2011-09-01 Thread Jhew SAN
i don't know. plz tell me -- 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] Re: I implement for delete row from listview but have force close

2011-09-01 Thread Jhew SAN
i will send my full source to ur mail what is ur mail -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+

[android-developers] Re: I implement for delete row from listview but have force close

2011-09-01 Thread Jhew SAN
change from viewInfo.removeViewAt(positionToRemove); to what -- 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-de

[android-developers] I implement for delete row from listview but have force close

2011-09-01 Thread Jhew SAN
Logcat say error this line viewInfo.removeViewAt(positionToRemove); final ListView viewInfo = (ListView)findViewById(R.id.listView1); final SWFForeCastInfoLayoutAdapter adapter = new SWFForeCastInfoLayoutAdapter(this, data, data.getCurrentConditionData()); viewInfo.setAdapter(ad

[android-developers] i have problem about listview adding can any one help me?

2011-08-31 Thread Jhew SAN
package com.cityweather; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStreamReader; import java.io.OutputStreamWriter; import java.net.MalformedURLException; import java.net.URL; import java.util.ArrayList; import javax.xml.parse

[android-developers] How can I change the Font of a particular world in a string stored in a database file sql.xml

2011-04-13 Thread San yin
Hello, I 'm on Eclipse Android Project Java I m developing a Quiz Apps and I need to << highlight in bold and Red >> a particular world in a string stored in Database file SQL.XLM Fore example: I would like to highlight the " is" in this string ( the House < is > red ) stored in a Data

Re: [android-developers] Re: Is it possible to slow system clock by an app? or it is a system bug?

2011-03-29 Thread San Zhang
I have installed OS monitor to test usage of CPU. It is running 0% CPU. To DanH: What is "By causing it to miss interrupts."? Could you tell me more details? 2011/3/29 DanH > By causing it to miss interrupts. > > On Mar 26, 9:26 am, Marcin Orlowski wrote: > > > How to check the usage of CPU

Re: [android-developers] Re: Is it possible to slow system clock by an app? or it is a system bug?

2011-03-26 Thread San Zhang
Thanks. 2011/3/26 Marcin Orlowski > > How to check the usage of CPU? >> > > https://market.android.com/details?id=com.eolwral.osmonitor > or read /proc/loadavg > > > >> 2011/3/26 DanH >> >>> If your app is running 100% CPU (ie, looking rather than waiting for >>> events) it's conceivable that i

Re: [android-developers] Re: Is it possible to slow system clock by an app? or it is a system bug?

2011-03-26 Thread San Zhang
conceivable that it would affect the clock. > > On Mar 25, 9:47 pm, San Zhang wrote: > > I found a strange problem. On my Nexus One, since upgrading to Android > > 2.3.3, the system clock would be slowed about one or two minutes every > > day during running my app. The app is

[android-developers] Is it possible to slow system clock by an app? or it is a system bug?

2011-03-25 Thread San Zhang
I found a strange problem. On my Nexus One, since upgrading to Android 2.3.3, the system clock would be slowed about one or two minutes every day during running my app. The app is an alarm clock tool. I have tested it under both cases of running/stopping my app. It is obvious that it is related to

Re: [android-developers] ANR keyDispatchingTimedOut on android/com.android.internal.app.RingtonePickerActivity

2011-03-13 Thread San Zhang
Today, I got a ANR error, too. I want to know how to read this error message. 2011/3/1 Sven > Hello! > > Today I got a error report in my market account for my application. It > is listed under Freeze. > I use the RingtonePicker in my preferences. Any chance I can do > something on this error? >

Re: [android-developers] Why can't my app be searched in Android Market?

2011-02-22 Thread San Zhang
..., include market.android.com. 2011/2/22 sogan xie > Hi San, > Did you upload your app to Android Market successfully? Or you can check > your upload link. > > On Tue, Feb 22, 2011 at 4:33 PM, San Zhang wrote: > >> Hi all, >> >> My app can't be search

[android-developers] Why can't my app be searched in Android Market?

2011-02-22 Thread San Zhang
Hi all, My app can't be searched in English name recently. I have tried to search it by both app name and key words but no result. It had could be searched to get result in the same methods. What is wrong? -- You received this message because you are subscribed to the Google Groups "Android Deve

Re: [android-developers] How to detect whether my app is installed on SD card by programmatically?

2011-02-16 Thread San Zhang
Aslo you have to add a permission in AndroidManifest.xml as bellow: 2011/2/16 San Zhang > > > http://stackoverflow.com/questions/1056570/how-to-autostart-an-android-application > > > > 2011/2/16 Kevin R. Octavian > > how to make an app can be autostartup? >>

Re: [android-developers] How to detect whether my app is installed on SD card by programmatically?

2011-02-16 Thread San Zhang
http://stackoverflow.com/questions/1056570/how-to-autostart-an-android-application 2011/2/16 Kevin R. Octavian > how to make an app can be autostartup? > > On 2/16/11, San Zhang wrote: > > Thanks Marcin Orlowski. Your answer is very useful for me. > > > >

Re: [android-developers] How to detect whether my app is installed on SD card by programmatically?

2011-02-16 Thread San Zhang
Thanks Marcin Orlowski. Your answer is very useful for me. 2011/2/16 Marcin Orlowski > On 16 February 2011 13:53, San Zhang wrote: > > My app can be autostarted when system completed boot. However, this > feature > > would be disabled if user intall the app on SD card.

[android-developers] How to detect whether my app is installed on SD card by programmatically?

2011-02-16 Thread San Zhang
My app can be autostarted when system completed boot. However, this feature would be disabled if user intall the app on SD card. I want to disable AUTOSTART option in settings screen in my own code if it may be detected whether the app is installed on SD card. Is it possible? If answer yes, how to

Re: [android-developers] Why a canceled notification displayed later again?

2011-02-06 Thread San Zhang
Oh, I have found a cause of the problem. It is a logic problem in my code but it is not displayed above codes. 在 2011年2月7日 下午12:26,San Zhang 写道: > Below codes is notifications behavior no problem: > = > public class AlarmService extend

Re: [android-developers] Why a canceled notification displayed later again?

2011-02-06 Thread San Zhang
TextView)findViewById(R.id.alarmtitle); AlsrmTitle.setText(settings.getString(sAlarmKeyName, sAlarmKeyName)); } . . . } } = 在 2011年2月7日 上午10:16,San Zhang 写道: > I don't understand how to use AlarmManager to post notifications. I think > that all notifications is

Re: [android-developers] Why a canceled notification displayed later again?

2011-02-06 Thread San Zhang
oblem, before I changed some thing in my code. If need, I can write these difference code snippet to here. 2011/2/7 TreKing > On Sun, Feb 6, 2011 at 7:21 AM, San Zhang wrote: > >> The results are same: The notification can be deleted from status bar, but >> it would be displaye

[android-developers] Why a canceled notification displayed later again?

2011-02-06 Thread San Zhang
I am developing an alarm clock app. I have a problem that alarm notification in status bar can not be deleted completely. I have tried both mathods, mNotificationManager.cancel(noti_id) and alarm_notification.flags=Notification.FLAG_AUTO_CANCEL. The results are same: The notification can be deleted

[android-developers] Android 2.3 - WebView is not listed in Graphical Layout

2010-12-15 Thread San
Hi, Did anybody check the Graphical Layout in Android 2.3. I cannot find WebView under "Views" tab. But i can successfully add element in the xml file. Regards, Saneesh -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this grou

Re: [android-developers] Market ranking

2010-10-06 Thread San Zhang
. > > On Wed, Oct 6, 2010 at 5:27 PM, San Zhang wrote: > >> How to know the rank of an app in a category? I tried to find it on >> androlib site just now, didn't get any clue. >> >> -- >> You received this message because you are subscribed to the Go

Re: [android-developers] Market ranking

2010-10-06 Thread San Zhang
How to know the rank of an app in a category? I tried to find it on androlib site just now, didn't get any clue. -- 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 un

Re: [android-developers] Needs confirmation on screen orientation on Android 2.1

2010-09-24 Thread San Zhang
It is a new feature for android 2.2 only. 2010/9/24 archieval > Hello everyone, > > I just need some confirmations. I have a device that has android 2.1 > installed, and the packages that are included in that android os > source code. Applications that I have, browser and aldiko (book > reader),

Re: [android-developers] How to open a nested child PreferenceScreen

2010-09-23 Thread San Zhang
This is my question, too. 2010/8/27 bo > > Hi > > I have a PreferenceScreen that is defined in XML that serves all the > preferences for my application. This PreferenceScreen also has a child > PreferenceScreen nested within it. My implementing class is called > PreferencesActivity.

Re: [android-developers] Re: Is it possible to rotate screen by program code but not accelerometer sensor?

2010-09-19 Thread San Zhang
Answer my own above question, it is impossible. Because there is no hotkey mechanism in android. Maybe need to research android source code to find solution. Have anyone any suggestion? 2010/9/20 San Zhang > Thank you all for answer. > > If there is no system level API, may I co

Re: [android-developers] Re: Is it possible to rotate screen by program code but not accelerometer sensor?

2010-09-19 Thread San Zhang
Thank you all for answer. If there is no system level API, may I control top activity from my service? for example, AnyTopActivity.setRequestedOrientation(). 2010/9/20 Doug > On Sep 19, 1:47 am, HaMMeReD wrote: > > Maybe you can switch between landscape and portrait by modifying the > > activ

Re: [android-developers] Is it possible to rotate screen by program code but not accelerometer sensor?

2010-09-18 Thread San Zhang
I known it can be disabled by Settings. My meaning is if there are APIs to manage rotate screen on system level but not my app only. 2010/9/19 Dianne Hackborn > On Fri, Sep 17, 2010 at 5:17 PM, San Zhang wrote: > >> 2. Accelerometer consumed power greatly. >> > >

[android-developers] Is it possible to rotate screen by program code but not accelerometer sensor?

2010-09-17 Thread San Zhang
Hi every one, There are some shortcoming for system's rotate screen function: 1. It is too sensitive to result in many unwanted rotating actions. 2. Accelerometer consumed power greatly. I want disable it and control screen orientation by my own program. Is it possible? -- You received this me

Re: [android-developers] Re: Bug in minSdkVersion or what?

2010-09-07 Thread San Zhang
Hi Dianne Hackborn, Your mention is very helpful for me, Thanks. I have an another question: If android:minSdkVersion is "3" and android:targetSdkVersion is "8", how to manager it? Or, is there a priority between both attributes? 2010/9/4 Dianne Hackborn > Also on that page: > > Default value

[android-developers] Re: Do android support multiple languages?

2010-09-02 Thread San
I think "values" folder is missing in the res. @Devdroid App will compile and build successfully even if the "values" folder is not present the res On Sep 2, 7:02 am, "{ Devdroid }" wrote: > On 2 September 2010 14:01, G Ganesh wrote: > > >        If i run my android application with htc magic w

[android-developers] Re: Replace preloaded class?

2010-09-02 Thread San
Nooo.. On Sep 2, 8:03 am, Chris Stratton wrote: > Is there any way for an ordinary application to replace low level > classes that are preloaded on startup, so that higher level preloaded > classes will end up calling my custom versions rather than the > originals?

[android-developers] Re: Application not running..!

2010-09-02 Thread San
Clean the project and build it again. If you get errors again, please check "Problems" tab. You can find the error descriptions there. On Sep 2, 8:43 am, Gold wrote: > Hi..All, > >                  I create new Project . In that I move to res -> > layout -> create one xml file.! >              

[android-developers] Re: Application does not running

2010-09-01 Thread San
Need some more info... Post code... On Aug 30, 11:12 pm, satheesh wrote: > Hi to all, >     I develop[e a small program to play the video from localhost ... > but that is not working its show like ... ActivityManager: Warning: > Activity not started, its current task has been brought to the front

[android-developers] Re: Same SMS is received multiple times- HTC Tattoo

2010-09-01 Thread San
When/where do you call this method? On Sep 1, 10:27 am, Amit wrote: > Hi All, > > I am facing one issue on my HTC tattoo device. > > I have written a code which sends an SMS to the given number. At the > recipient end I am receiving more than one SMSs. One time I have even > received 17 same me

[android-developers] Re: SQLite implementation - need help!

2010-09-01 Thread San
Hey King, Your SQL query is not right. You have to give space before you add the type. Try this String sql = "create table " + TABLE_EVENT + "(_id integer not null primary key autoincrement," + COL_ENTRYID + " integer, " + COL_EVENTNAME + " varchar, " + COL_DATE + " date,

[android-developers] Re: Want to confirm that app is in background due to Home Key press

2010-08-31 Thread San
You are right Flying Code. I checked this somedays before. onUserLeaveHint() getting called as soon the Home key is pressed. I checked other interruptions like pressing search key, incoming call etc. But this method only called when i press the HOME key. (I tested on a 2.1 phone) On Aug 31, 3:49 

[android-developers] Re: How to create TextView without write the XML file

2010-08-31 Thread San
As Havlicek said, create the textview using findViewByID and set the text when button is clicked. Sample code: tv = (TextView) findViewById(R.id.TextView01); tv.setText("This is sample."); Button button = (Button) findViewById(R.id.Button01); button.setOnClickListener(new OnClickListener() { publ

[android-developers] Re: Error during sms deletion.

2010-08-31 Thread San
Are you facing this problem always? Or is this happening only when you try to delete a message as soon as you receive it. On Aug 31, 3:33 am, Pobudzio wrote: > Hi, > > I have problem with deletion sms with messageId=0. I can't delete such > a message. There is no problem with deletion other mess

[android-developers] Re: getting email address of the account on the phone

2010-08-31 Thread San
Account[] allAccounts = AccountManager.get(getApplicationContext()).getAccounts(); for(Account account : allAccounts) { String emailAccName = account.name; String emailAccType = account.type; } Dont forget to add in the manifest -- You received this message because you are subscribed to t

[android-developers] Re: getting email address of the account on the phone

2010-08-31 Thread San
Account[] allAccounts = AccountManager.get(getApplicationContext()).getAccounts(); for(Account account : allAccounts) { String emailAccName = account.name; String emailAccType = account.type; } Dont forget to add in manifest -- You received this message because you are subscribed to the G

[android-developers] Re: How to clear static variable values when will i close my application in android

2010-08-31 Thread San
And it is not recommended to use static variables in Android applns. On Aug 31, 1:57 pm, DanH wrote: > Static variables are created and initialized when the class containing > them is loaded into the VM by the class loader.  When the class is > unloaded or the VM ended, the static variables go

[android-developers] APIs to access email accounts or SMS/MMS messages

2010-05-24 Thread San
Hi, Does anyone know if there is an API available to access all SMS messages as well as emails in the inbox? Thanks! -- 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] Re: Settings Intent in Sense UI

2010-04-15 Thread San
You are awesome.. startActivity(new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS)) works... :) I think the flag and category was making the problem. On Apr 15, 9:55 am, Mark Murphy wrote: > San wrote: > > I am also facing similar issue. > > I have to enable GPS programatical

[android-developers] Re: Settings Intent in Sense UI

2010-04-15 Thread San
Thanks Mark for a quick reply... :) I will try this. On Apr 15, 9:55 am, Mark Murphy wrote: > San wrote: > > I am also facing similar issue. > > I have to enable GPS programatically when the app starts. > > You can't enable GPS programmatically. At most, you can displ

[android-developers] Re: Settings Intent in Sense UI

2010-04-15 Thread San
AndroidManifest.xml? On Apr 15, 9:49 am, San wrote: > Hi Mark/GodsMoon, > > I am also facing similar issue. > I have to enable GPS programatically when the app starts. > I am getting an error > 04-15 09:36:42.579: WARN/System.err(1299): > android.content.ActivityNotFoundException: No Act

[android-developers] Re: Settings Intent in Sense UI

2010-04-15 Thread San
Hi Mark/GodsMoon, I am also facing similar issue. I have to enable GPS programatically when the app starts. I am getting an error 04-15 09:36:42.579: WARN/System.err(1299): android.content.ActivityNotFoundException: No Activity found to handle Intent { action=android.settings.LOCATION_SOURCE_SETTI

[android-developers] Re: Programmatically turning off the screen and locking the phone

2010-02-08 Thread San
Abhay, Any update on this? Did you get how to lock? On Feb 1, 9:55 am, Abhay dey wrote: > Hi All, >          As we know that Android phone gets locked after screen timeout. But > I want to lock the phone on demand as well. i.e. without waiting for screen > timeout to occur..  As in nexus androi

[android-developers] Re: How to lock key, but keep the display active?

2010-01-26 Thread San
Did you implement 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@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com

[android-developers] Page Cycler test flakiness on Android

2009-11-24 Thread Buakaw San
I downloaded a bunch of webpages using Chrome and am trying to use them as test data for the Android page cycler tests on the emulator. I've been seeing issues whereas either the __onload function isn't called in head.js or after some random number of iterations the LoadTestAutoTest finishes even t

[android-developers] Re: Building and running webcore_test

2009-11-16 Thread Buakaw San
re_test That's the end of the output. > > On Fri, Nov 13, 2009 at 5:05 PM, Buakaw San wrote: > >> Also, what kind of output do you get from the successful execution of this >> command line tool? Could you please post a sample dump of the output? >> >> Than

[android-developers] Re: Building and running webcore_test

2009-11-13 Thread Buakaw San
Also, what kind of output do you get from the successful execution of this command line tool? Could you please post a sample dump of the output? Thanks. On Mon, Nov 2, 2009 at 12:58 PM, Buakaw San wrote: > I'm trying to use webcore_test to execute performance tests, in > particula

[android-developers] Re: Building and running webcore_test

2009-11-13 Thread Buakaw San
; on. Did this just start happening? Did you change anything or do a sync? > > > On Fri, Nov 13, 2009 at 1:38 PM, Buakaw San wrote: > >> Okay, I've tried this and I get: >> >> reloc_library[1175]: 1476 cannot locate >> '_ZN11GraphicsJNI12createBitma

[android-developers] Re: Building and running webcore_test

2009-11-13 Thread Buakaw San
libwebcore.so which are > normally piped to /dev/null and not seen. The actual png output is sent to > /sdcard/webcore_test.png. > > > On Mon, Nov 2, 2009 at 12:58 PM, Buakaw San wrote: > >> I'm trying to use webcore_test to execute performance tests, in >> parti

[android-developers] Building and running webcore_test

2009-11-02 Thread Buakaw San
I'm trying to use webcore_test to execute performance tests, in particular measuring the speed of page loads for numerous websites. I've built webcore_test after including external/webkit/perf to the android build. I used adb push to copy it to the system. When I run the executable using adb shell,

[android-developers] Re: SDK 1.5 and Eclipse problem

2009-06-10 Thread De San Nicolas Jean Philippe
Hi, it's OK now, I'saw with the nestat - a command line that theer was several processus on the 5037 port. The port wich serves for the emulator. Thanks 2009/6/11 Brett Chabot > > Try closing Eclipse, issuing a > '/Developer/android-sdk-mac_x86-1.5_r2/tools/adb kill-server' command > from termin

[android-developers] Re: ADB server didn't ACK, cannot bind tcp...

2009-06-10 Thread De San Nicolas Jean Philippe
I will try in three or four hours I have to go now I will send another post if it works or not Thanks very much 2009/6/10 David Turner > You should be able to use netstat -a to see which processes are bound to > which ports > > > On Wed, Jun 10, 2009 at 4:33 PM, jphdsn wrote: > >> >> Precisio

[android-developers] Re: Android Developer Challenge II Cancelled?

2009-03-19 Thread De San Nicolas Jean Philippe
The strategy of Google for Android is very very obscure. I think for a while that the Challenge Two will not come. As I know Objective C maybe I ll take a pause with android. ... 2009/3/19 luigi bertoneri > Where are the info about the 2° comp ? > Post the link please the search give no result. >

[android-developers] Re: ADC II

2009-02-10 Thread De San Nicolas Jean Philippe
maybe it's a fake... 2009/2/10 sommeralex > > are there any rumors around concerning the google android challenge > ADC II? or will it be canceled due to the "financial worldwide crisis" > or the success of ADC I? > > > > > --~--~-~--~~~---~--~~ You received this

[android-developers] Re: EARN 100$ PER DAY WITH CJ

2009-01-16 Thread De San Nicolas Jean Philippe
it"s cheap 2009/1/13 namratamo...@gmail.com > > EARN 100$ PER DAY WITH CJ > > http://megalinesolutions.googlepages.com/cj_1 > > > > > --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers"

[android-developers] Re: Issue regarding Changing textColor

2008-12-21 Thread De San Nicolas Jean Philippe
hi... try this android:textColor="#FF00" 2008/12/21 nithin warier > I tried a lot to change the textColor using xml, like > > android:textColor = "7FFF00", > android:textColor = "0x700" > android:textColor = "@drawable/blue" > > like that... > > but i cant change the text Color, still

[android-developers] Re: Video Formats in android

2008-10-26 Thread De San Nicolas Jean Philippe
hello, I'm not sure but If my memory is good I've tried that one time. the Java, not Android Java(?), Interface to convert Video is javax.media.Processor it inhirits from javax.media.player in the JMF API. bye 2008/10/26 guna <[EMAIL PROTECTED]> > > Hi to all, > Anyone trying with media pla

[android-developers] Re: Example: upload files to php from android

2008-10-23 Thread De San Nicolas Jean Philippe
hello just a question (for the moment -:)) you set the dependencies in your classpath in your Android project? thank's 2008/10/21 octagon <[EMAIL PROTECTED]> > > This is a way for android to POST a file upload to a php script. I had > a bit of trouble figuring out the ins and outs of the http

[android-developers] Re: Can I record an audio file via MediaRecorder on the simulator which based on android-sdk-windows-1.0_r1?

2008-10-23 Thread De San Nicolas Jean Philippe
yes you can. I can't help you now I've no time but you can record with the emulator I've done it 2008/10/23 Mobile Diva <[EMAIL PROTECTED]> > > I've spent several hours trying to record audio on android-sdk- > windows-1.0_r1 and emulator, and surfing for information that would > tell me how to do

[android-developers] Re: how import org.apache.commons.httpclient ?

2008-10-19 Thread De San Nicolas Jean Philippe
thank's, I just have a look at the different classes and package, I don't recognize lot of thing... 2008/10/19 Jason Proctor <[EMAIL PROTECTED]> > > for reasons which i hope were good, the package names were changed to > live off org.apache.http. the name change has served to confuse > everythin

[android-developers] Re: SoundRecordingDemo in v1.0

2008-10-01 Thread De San Nicolas Jean Philippe
gt; > Thanks! > > April > > On Oct 1, 11:18 am, "De San Nicolas Jean Philippe" <[EMAIL PROTECTED]> > wrote: > > yes you can. the format is .amr and you can read it with the > mediaplayer. > > -:) > > > > 2008/10/1 april <[EMAIL PROTECT

[android-developers] Re: SoundRecordingDemo in v1.0

2008-10-01 Thread De San Nicolas Jean Philippe
yes you can. the format is .amr and you can read it with the mediaplayer. -:) 2008/10/1 april <[EMAIL PROTECTED]> > > How do you test the code without real phone? Can you record from > emulator? what is the format of sound? > > Thank! > > On Oct 1, 9:25 am, Guillaume Perrot <[EMAIL PROTECTED]> w

[android-developers] Re: SDK 1.0:

2008-09-25 Thread De San Nicolas Jean Philippe
vast no, but there is, with sqlite for exemple 2008/9/26 dhuri natarajan <[EMAIL PROTECTED]> > Is there any vast difference between the SDK released 1.0 and 0.9 beta?. > > > > --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[android-developers] Re: Problem when running SoundRecordingAPISample of Megha

2008-09-24 Thread De San Nicolas Jean Philippe
I've resolved the problem but I've another one now. Does anyone have read an .amr issued from the audiorecorder? 2008/9/24 De San Nicolas Jean Philippe <[EMAIL PROTECTED]> > hey, > > I've just tried the sample SOUNDRECORDINGAPISAMPLE, and an error occured

[android-developers] Re: Problem when running SoundRecordingAPISample of Megha

2008-09-24 Thread De San Nicolas Jean Philippe
AUDIO I've put a line with a permission in the manifest but it doesn't make anything. Does anyone know permission RECORD_AUDIO? 2008/9/24 Baonq86 <[EMAIL PROTECTED]> > > Does anyone record the different format (not .amr) ?? > > On Sep 24, 3:10 pm, "De San Ni

[android-developers] Re: Receiving SMS Messages in 1.0?

2008-09-24 Thread De San Nicolas Jean Philippe
hello, it works,sorry 2008/9/24 De San Nicolas Jean Philippe <[EMAIL PROTECTED]> > Hello, I've tried your code but it failed! my application failed. Have you > tried and succeed? > > 2008/9/24 Cristina <[EMAIL PROTECTED]> > > >> Hi, >> >> I d

[android-developers] Re: Receiving SMS Messages in 1.0?

2008-09-24 Thread De San Nicolas Jean Philippe
Hello, I've tried your code but it failed! my application failed. Have you tried and succeed? 2008/9/24 Cristina <[EMAIL PROTECTED]> > > Hi, > > I do not know if it is the right way, but I have found a way to get > the message. > Here I include my code to get the SmsMessages. I hope it helps you

[android-developers] Re: Problem when running SoundRecordingAPISample of Megha

2008-09-24 Thread De San Nicolas Jean Philippe
mat? i can't run it on > Android. > > On Sep 23, 6:04 pm, "De San Nicolas Jean Philippe" <[EMAIL PROTECTED]> > wrote: > > sorry,it works > > > > 2008/9/23 De San Nicolas Jean Philippe <[EMAIL PROTECTED]> > > > > > another question ab

[android-developers] Re: Problem when running SoundRecordingAPISample of Megha

2008-09-23 Thread De San Nicolas Jean Philippe
sorry,it works 2008/9/23 De San Nicolas Jean Philippe <[EMAIL PROTECTED]> > another question about sound an recording. I've read that the only way to > record sound is to record it in AMR format. Is it true that the media player > does not read this format? And if it's t

[android-developers] Re: Problem when running SoundRecordingAPISample of Megha

2008-09-22 Thread De San Nicolas Jean Philippe
2008/9/23 Megha Joshi <[EMAIL PROTECTED]> > Yes...the sample is intended to be used for 0.9 sdk, it wont work correct > for m5. > > 2008/9/22 De San Nicolas Jean Philippe <[EMAIL PROTECTED]> > > me again... >> >> I think Ive resolved the problem with sdcard but

[android-developers] Re: Problem when running SoundRecordingAPISample of Megha

2008-09-22 Thread De San Nicolas Jean Philippe
thank's. another time... 2008/9/23 Megha Joshi <[EMAIL PROTECTED]> > Yes...the sample is intended to be used for 0.9 sdk, it wont work correct > for m5. > > 2008/9/22 De San Nicolas Jean Philippe <[EMAIL PROTECTED]> > > me again... >> >> I think

[android-developers] Re: Problem when running SoundRecordingAPISample of Megha

2008-09-22 Thread De San Nicolas Jean Philippe
me again... I think Ive resolved the problem with sdcard but I have another problem... the error message in red ERROR/AudioHardware(518): Error 16 opening record channel ERROR/AudioFlinger(518): openRecord returned error 16 ERROR/AudioHardware(518): Attempt to close without open I run the sam

[android-developers] Re: send SMS

2008-09-09 Thread De San Nicolas Jean Philippe
OK thank you. I hope give you help if I can in the future. 2008/9/9 Megha Joshi <[EMAIL PROTECTED]> > > > 2008/9/9 De San Nicolas Jean Philippe <[EMAIL PROTECTED]> > >> hello, >> >> no I using the m. Is it the reason? >> > > Yes, please use

  1   2   >