[android-developers] Install on SD card using adb.exe - doesn't work?

2011-02-03 Thread EvgenyV
Hi all! Trying to run following command: C:\Users\evgenyD:\Android\android-sdk_r07-windows\tools\adb.exe -d install -s D:\MyTest.apk and getting Error: Unknown option: -s However the adb -help is showing adb install [-l] [-r] [-s] file - push this package file to the device and install it

[android-developers] Market related application functionality - feature?

2010-12-30 Thread EvgenyV
Hi all, I have 2 applications: free and paid. Both belongs to the Travel category. Actually the paid app is extended version of the free one. related applications list of my paid application contains my free version as expected. But for some reason not vice versa. From the free application

[android-developers] Appearance updated application as Just in - wait 12-14 days between updates?

2010-11-24 Thread EvgenyV
Hi all, I didn't find my recently updated application in Just In view after some investigation I got answer from developer: If you recently released it won't show in Just In again, you have to wait like 12 - 14 days or something Is it some new Market rule struggling with spam programs? Thanks,

[android-developers] Create TableRow programmatically - what is wrong?

2010-11-01 Thread EvgenyV
Hi all, I'm trying to create table row and place 3 elements: EditText - EditText - ImageButton as following: TableLayout tableUnits = (TableLayout)findViewById(R.id.tableUnits); TableRow tr = new

[android-developers] Please help to test my app on HTC wildfire.

2010-10-18 Thread EvgenyV
Hi all, I've just reported that my app doesn't work on HTC wildfire. I'm developing and testing on G1 and Motorola xt701 without issues. Please test it on HTC wildfire and let me know whether I have any generic problem with mentioned device. My app is ConvertMe(Beta) Many thanks, Evgeny --

[android-developers] Floating point sign. Comma , or . for France onscreen keyboard - question.

2010-10-17 Thread EvgenyV
Hi all, I'm using EditText with following Input type properties: number| numberSigned|numberDecimal|phone. The locale is fr which France settings. The question is: should I expect comma , as floating number sign instead . using for English locale. Thanks in advance, Evgeny -- You received

[android-developers] Some problem/question about resolutions

2010-08-20 Thread EvgenyV
Hi all, I'm loading the same png file 32X32 into the ImageView. When loading from the URL stream, from drawable folder and from drawable-hdpi folder getting 3 different displayed sizes of image. From drawable it's large, from drawable-hdpi - medium, from stream - small. Can you please advise

[android-developers] Please help! Hebrew support on Motorola Milestone XT701 and other devices

2010-08-07 Thread EvgenyV
Hi all, I want to develop aplication supports hebrew font. Does anyone know how to install hebrew fonts my android as development phone? And also how make the application displaying hebrew properly on other devices? Thanks in advance, Evgeny -- You received this message because you are

[android-developers] AutoCompleteTextView and SimpleCursorAdapter

2010-06-06 Thread EvgenyV
Hi All, I'm using AutoCompleteTextView with SimpleCursorAdapter. It works properly except one issue: I can't get regular list dropdown view. When performing filtering the lines are narrow. I've tested API Demos AutoCompelte1 example and got the normal dropdown view when using ArrayAdapterString.

[android-developers] Asking for small QA on HTC Desire phone (Italy locale)

2010-06-06 Thread EvgenyV
Hi All, I've reported some bug from HTC Desire phone running my app ConvertMe(Beta). Unfortunately I can't recreate in on emulator and on my G1. If you are Italian developer using HTC Desire, please download my app and test currency converter! Thanks in advance, Evgeny -- You received this

[android-developers] G1 phone and update firmware 2.0-2.2 - question

2010-05-21 Thread EvgenyV
Hi All, 1. Guys please suggest some official Google/HTC link with explanation why HTC G1 phone can't be updated to Adroid 2.0-2.2 firmware. 2. Is Google planning to sell latest versions of dev phones in the near future? Thanks in advance, Evgeny -- You received this message because you are

[android-developers] Market shows: Localized to: unknown - issue 5930 is still not fixed?

2010-04-24 Thread EvgenyV
Hi all! I've just uploaded my application supports many languages. Android Market shows Localized to: unknown. I have res\values-fr-rFR, res\values-es-rES, res\values-ru-rRU etc. localized folders. Found that same issue has reported as issue 5930 but didn't find any responses. Any ideas?

[android-developers] Progress dialog question/problem (API Demos example)

2010-04-03 Thread EvgenyV
Hi all! I'm using the progress dialog example from Android API Demos AlertDialogSamples.java (case DIALOG_PROGRESS). After the orientation changed the dialog is freezing with no progress anymore. What should I change to make the example working properly after orientation change? The piece of

[android-developers] Application invisible in Market from Nexus One. Please test.

2010-03-29 Thread EvgenyV
Hi developers! I've reported that my app is invisible when accessing to Market from Nexus device. In the past I've reported some runtime resolution problem with Tatoo device but as far I know Nexus has a normal screen HVGA 320x480. The strange is that the app is invisible. Can you please check

[android-developers] Layout question

2010-03-05 Thread EvgenyV
Hi all! I have horizontal layout contains 2 TextView items. The left width is limited by 10 characters. How can I store strings longer than 10 characters in new lines of this TextView? I need actually fixed width but possibility to grow heigh. Now the text next line (see xml) can't be visible.

[android-developers] How to customize onscreen keyboard? Please help!

2010-02-26 Thread EvgenyV
Hi All! I need to hide all keys except numbers, point and dash and change the dash behaviour. Unfortunately attribute android:inputType=number|numberSigned| numberDecimal doesn't hide @, #, $ etc. keys. How can I customize the soft keyboard view? I actually need to show and react to my custom

[android-developers] Does emulator 1.6/2.0 supports bluetooth and WIFI?

2010-01-08 Thread EvgenyV
Hi all! 1. Can I emulate the WIFI and bluetooth on emulator? 2. Can you send, please the links to examples for bluetooth and WIFI development? Thanks in advance, Evgeny -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] Re: Force locale for an application, bug in 2.0?

2009-12-26 Thread EvgenyV
Hi Dianne, I have exactly the same problem. The functionality was broken since I move to v10 and now to 2.0.1 I wrote the question as Different behaviour between SDK 1.6 and SDK 2.0 - bug? Please help. in developers forum month ago but no answer. Anyway when i'm commenting the line

[android-developers] Re: Force locale for an application, bug in 2.0?

2009-12-26 Thread EvgenyV
Shuold I add it to each activity or only to LAUNCHER activity? Thanks, Evgeny On Nov 12, 9:31 pm, monmonja almondmend...@gmail.com wrote: Add android:configChanges=locale to your activity nodes on the manifest file activity android:name=.Main android:configChanges=locale

[android-developers] Re: Force locale for an application, bug in 2.0?

2009-12-26 Thread EvgenyV
It fixed the issue after i added it to LAUNCHER only! Thanks a lot! On Nov 12, 9:31 pm, monmonja almondmend...@gmail.com wrote: Add android:configChanges=locale to your activity nodes on the manifest file activity android:name=.Main android:configChanges=locale android:label=@string/app_name

[android-developers] Windows 7 Android development environment question

2009-12-26 Thread EvgenyV
Hi all, Can you please advise if development tools Eclipse, Android sdk, usb driver etc. are working properly under Windows 7 32 and 64 bit? Thanks, Evgeny -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Different behaviour between SDK 1.6 and SDK 2.0 - bug? Please help.

2009-11-30 Thread EvgenyV
Hi! I got infinit loop when trying to run tab activity which creating dialog. Before I'm pressing the dialog button OK or Cancel button the system is starting my tab main activity again. It worked fine in all previouse versions. The log report: *11-28 16:59:38.607: WARN/UsageStats(59): Something

[android-developers] Implements Filterable question

2009-10-06 Thread EvgenyV
Hi! I'm using custom Adapter extends BaseAdapter. Unfortunately BaseAdapter doesn't implements Filterable interface. That's a reason I can't use setTextFilterEnabled(true) functionality. Where can I learn how ArrayAdapter implements Filterable interface? There is my simple code: private class

[android-developers] API demos and SDK 1.5: is available?

2009-05-02 Thread EvgenyV
Hi! As far I see the API demos sources are not a part of latest 1.5 SDK. Can I download it somewhere? Thanks, Evgeny --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] Plugin 0.9 ADT with Eclipse (G4.3.2) on WIN XP SP3 problem

2009-04-28 Thread EvgenyV
Hi all! I've updated from 1.1 to 1.5 following http://developer.android.com/sdk/1.5_r1/upgrading.html 0.9 ADT plugin was succesfully installed. The Android plugin doesn't present in Window - Preferences options. So I can't perform step Update your Eclipse SDK Preferences. Using fully updated

[android-developers] 1.5 SDK problems

2009-04-28 Thread EvgenyV
Hi all! I just want to make sure that is not only my personal experience that the latest SDK 1.5. Looks like 1. 5 is causing couple of serious upgrade, installation and runtime issues. Should we wait for some quick local patch soon? Thanks, Evgeny

[android-developers] TabHost in 1.5 problem

2009-04-28 Thread EvgenyV
Hi! I have the problem since updated to 1.5. Some activity can be started as independent activity. In addition it can be hosted in TabHost. tabHost.addTab(tabHost.newTabSpec(tabSettings) .setIndicator(res.getString (R.string.tab_settings_title),

[android-developers] Floating help doesn't work with 0.9 plugin?

2009-04-28 Thread EvgenyV
Hi! After 1.5 and 0.9 plugin update I can't see the floating help documentation. Should I do some additional updates? There was the same problem with first 1.1 SDK. Is it the same issue? Thanks, Evgeny --~--~-~--~~~---~--~~ You received this message because you

[android-developers] WebView and https post problem

2009-04-17 Thread EvgenyV
Hi all! I'm trying to get PayPal web page with requested donation parameters. It works within IE or Firefox. Can anyone advise whether I'm running some wrong code? Layout main.xml: - ?xml version=1.0 encoding=utf-8? LinearLayout

[android-developers] Some question about market rate

2009-04-03 Thread EvgenyV
Hi all, I can't explaing why with the increasing number of downloads and increasing positive feedbacks the number of uninstalls is growing as well. Does anybody know what is the avarage value of free applications uninstall? Thanks in advance, Evgeny

[android-developers] Question regarding unexpected application behaviour (reported by market users)

2009-04-02 Thread EvgenyV
Hi all, I just uploaded the application and got couple of negative rates like force closes on start. On start the tab page populated by Intent which is ListActivity. The list data is loading from resources. List is really small. No internet and file system access triggered on start. The strange

[android-developers] Custom created files and application reinstall - bug or my mistake?

2009-03-29 Thread EvgenyV
Hi all! My application creates some custom file on sdcard/mypackage/myfile.bin Uninstall from the phone left this file unremoved. Actually it left the unused garbage. I believe it happens with other applications as well. How can I ensure deleting of all custom files when the application

[android-developers] Question about OpenGL literature

2009-03-25 Thread EvgenyV
Hi all, Can you please suggest some book(s) or any other useful references about OpenGL? Thanks in advance, Evgeny --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] Question about spinner and quick text search.

2009-02-20 Thread EvgenyV
Hi! For ListActivity I can use method setTextFilterEnabled(true) which allows me to type letters and quick find list item(s). Does anybody know whether exists some similar out of the box functionality for Spinner dropdown list? Thanks, Evgeny

[android-developers] Show dialog on creation - question?

2009-02-13 Thread EvgenyV
Hi! I'm trying to show dialog OK/Cancel and then continue construction after user closed the dialog. Unfortunately the dialog get visibility only AFTER the creation of myclass was completed. In my example Run( ) method will never run. There is code: public class MyClass extends Activity {

[android-developers] setVerticalScrollBarEnabled( ) problem

2009-01-17 Thread EvgenyV
Hi all, I'm trying to set vertical scrollbar programmatically. But get following error stack on creation: 01-17 13:33:12.944: ERROR/AndroidRuntime(464): java.lang.NullPointerException 01-17 13:33:12.944: ERROR/AndroidRuntime(464): at android.view.View.onDrawScrollBars(View.java:4684) 01-17

[android-developers] Find loaded activity - question

2009-01-17 Thread EvgenyV
Hi all! I have some tab activity A which is application main activity. From one of the TabSpec's I'm opening other separate activity B. B not hosted inside my tab host. B is openening activity C etc. How can I find and back to already loaded tab activity A and show it? Thanks

[android-developers] Change linear layout programmatically - problem

2009-01-10 Thread EvgenyV
Hi! I'm trying to change height layout from wrap_content to fill_parent from code. Using landscape mode. public class BBB extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);

[android-developers] Share data between activities queston

2009-01-09 Thread EvgenyV
Hi! What is the best way to share data between different activities? Thanks in advance, Evgeny --~--~-~--~~~---~--~~ 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] Re: changing string resources

2009-01-03 Thread EvgenyV
Just make sure I'm not missing something... I have some code: public class MyLangTest extends Activity { @Override public void onCreate(Bundle icicle) { super.onCreate(icicle); String fromResources = getResources().getString(r.string.f_name); //Displayed First Name Locale newLocale = new

[android-developers] Re: Could Chinese developper register Android market?

2009-01-02 Thread EvgenyV
I'm Israeli developer. I completed registration as well. But the question is whether we could upload chargable application and get the income from Google market? Thanks On Dec 12 2008, 5:44 pm, cpedia cpe...@gmail.com wrote: Yes. Of course. I registered and successed. I use MasterCard of

[android-developers] Apostrophe question

2008-12-24 Thread EvgenyV
Hi all! Some question regarding apostrophe as part of string-array items. I have string array defined as following: ?xml version=1.0 encoding=utf-8? resources string-array name=my_arry itemMen's info/item itemDummy info/item /string-array /resources In code I'm getting the

[android-developers] Re: how to access file system

2008-12-10 Thread EvgenyV
Hi! I have similar question. Can I install any external file xml or text file next to apk like .config file? It will allow me to send updates without actually binary changes. Is it possible? Thanks On Nov 26, 8:18 pm, Christine [EMAIL PROTECTED] wrote: What do you mean by

[android-developers] Spinner background change - how?

2008-11-28 Thread EvgenyV
Hi All, How can i change the background of spinner from code or from layot xml? I tried to change it from xml it becames some unexpected flat line :( In addition if it's possible to change the trinagle color? Thanks in advance, Evgeny [EMAIL PROTECTED]

[android-developers] Howto take value for android:textSize from resources?

2008-11-28 Thread EvgenyV
Hi All, I have defined buttons like following: Button android:id=@+id/button_1 android:text=1 android:textStyle=bold android:textSize=30dip android:textColor=@color/main_text_color android:padding=3dip / Button android:id=@+id/button_2 android:text=2 android:textStyle=bold

[android-developers] Re: Help me to test APK file on your real device

2008-11-22 Thread EvgenyV
Hi! I have a similar question. f it's possible to upload apk directly from comp to device? Thanks On Nov 22, 6:23 pm, Dorn Hetzel [EMAIL PROTECTED] wrote: I suppose you could also upload it to the marketplace under maybe the Demo category and name it TestMePlease :) On Sat, Nov 22, 2008