Re: [android-developers] Android horizontal scroll list like Gallery

2011-04-04 Thread Alessio Grumiro
I think you can use horizontal scrollview with horizontal linear layout inside. Inside linear layout you can put items without listview, i hope. Do you have a better solution? Bye 2011/4/4 umakantpatil umakantpat...@gmail.com Hey, I want horizontal scroll like Gallery. Im not using Gallery

Re: [android-developers] Re: How is your sales model changing with the introduction of Android 3.0 and tablets, or is it?

2011-03-19 Thread Alessio Grumiro
Maybe it depends by your application, but i think it is better #1. You have to manage 2 different applications: phone version and tablet version. Consider environments: you can read football news on your mobile phone while your are on bus. Usually you use tablet in office or at home, so your are

Re: [android-developers] Chaining Methods and Performance.

2011-03-16 Thread Alessio Grumiro
I use same syntax for custom view. I think it isn't a oop valid notation, and performance improvement is poor (maybe class file size could be smaller) You can use it if you like it. Bye Il giorno 15/mar/2011 21.38, brookisme br...@stickandlogdesigns.com ha scritto: Hi Guys. When creating

Re: [android-developers] Get activity theme from network and apply it programmatically

2011-03-15 Thread Alessio Grumiro
treking...@gmail.com On Mon, Mar 14, 2011 at 8:31 AM, Alessio Grumiro a.grum...@gmail.comwrote: Are you joking? No. Android compiles resource in res/values/. Correct. If you download a file from network, i don't know how you can use it like a resource file. True, you can't. You'd have

Re: [android-developers] Re: ProgressDialog not showing

2011-03-15 Thread Alessio Grumiro
I'm unable to do that, because it isn't a single file. Thank you. 2011/3/15 TreKing treking...@gmail.com On Tue, Mar 15, 2011 at 9:04 AM, David Williams dwilli...@dtw-consulting.com wrote: So, my return from doInBackGround is *false*. The parameter passed into onPostExecute is *true*.

Re: [android-developers] Get activity theme from network and apply it programmatically

2011-03-14 Thread Alessio Grumiro
How i can perform task 3? Thank you 2011/3/14 TreKing treking...@gmail.com On Mon, Mar 14, 2011 at 3:34 AM, Premier a.grum...@gmail.com wrote: How i can do this? 1 - download file themes.xml from network 2 - saves it locally 3 - apply to current activity.

Re: [android-developers] Re: How to use the static fragment library in legacy apps?

2011-03-05 Thread Alessio Grumiro
: ERROR/AndroidRuntime(448): Caused by: java.lang.ClassNotFoundException: android.view.fragment in loader dalvik.system.PathClassLoader@44e83790 On 4 Mar, 16:52, Alessio Grumiro a.grum...@gmail.com wrote: Ok, but it must be executed on HoneyComb (look at default.properties

Re: [android-developers] Re: How to use the static fragment library in legacy apps?

2011-03-05 Thread Alessio Grumiro
): at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:563) 03-05 14:26:57.395: ERROR/AndroidRuntime(401): ... 20 more 2011/3/5 Alessio Grumiro a.grum...@gmail.com Can you give me another sample app, please? 2011/3/4 Dianne Hackborn hack...@android.com If it helps

Re: [android-developers] Re: How to use the static fragment library in legacy apps?

2011-03-04 Thread Alessio Grumiro
Ok, but it must be executed on HoneyComb (look at default.properties target=android-11). I'm unable to lunch it on android 1.6. Is the library for android 1.6? 2011/3/4 marlan marlan12...@googlemail.com under $android-sdk/extras/android/compatibility/v4/samples/ApiDemos/src/com/

Re: [android-developers] Re: On using themes?!

2011-02-07 Thread Alessio Grumiro
So, is it impossible to solve it directly in xml? _ Alessio Grumiro http://www.agmobilesolutions.com 2010/9/22 Mariano Kamp mariano.k...@gmail.com As it wasn't possible to submit a new post to the existing/old conversation using the web interface I am copying the message here

Re: [android-developers] How to get Facebook Session in second activity In Android?

2010-12-15 Thread Alessio Grumiro
I haven't read all, but i think you can - use static Facebook Session Manager in application, in this way you open facebook session once on application startup and use it in all activities. - use android service like a background thread worker. Service lives in your application context, and you

Re: [android-developers] Re: Samsung Galaxy Tab: AVD add on package

2010-10-23 Thread Alessio Grumiro
Samsung Galaxy Tab emulator is bigger than my screen resolution. It can't starts with different screen resolution. How do you solve this issue? 2010/10/23 Lance Nanek lna...@gmail.com I was able to test a Google APIs (MapActivity, etc.) using app by copying the system.img from

[android-developers] Sqlite Math and load_extension

2009-09-05 Thread Alessio
Hi, i need to work with math functions (like sin,cos,sqrt,rad,degree etc.) on some geographical point stored in sqlite db. I know that sqlite doesn't support math function but there are some extension that implements this functions. Is it possible to load extension in android. If yes, how can

[android-developers] Re: Use classes defined inside other applications

2009-08-31 Thread Alessio Grumiro
you have to create a jar file and import jar library in other projects 2009/8/31 Lutz Schönemann lutz.schoenem...@sit.fraunhofer.de Hi, is it possible to use classes that are defined in other applications? I have two dependent projects and want to use classes from one project inside the

[android-developers] Re: Jdbc driver problem

2009-08-26 Thread Alessio
i'll do that. Ty On Aug 24, 7:44 pm, Mark Murphy mmur...@commonsware.com wrote: Like object i have some problem with jdbc driver. Android does not include JDBC. I wanna connect to a database server (postgresql) without write some php script server side to comunicate with client

[android-developers] Jdbc driver problem

2009-08-24 Thread Alessio
(jdbc:postgresql://192.168.0.2/ postgres, postgres, alessio); tv2.setText(jdbc:postgresql://192.168.0.2/ postgres+ postgres+ alessio); DatabaseMetaData dbmd

[android-developers] Jdbc driver problem

2009-08-24 Thread Alessio
= DriverManager.getConnection(jdbc:postgresql://192.168.0.2/ postgres, postgres, alessio); tv2.setText(jdbc:postgresql://192.168.0.2/postgres+ postgres+ alessio); DatabaseMetaData

[android-developers] Re: How to DROP a Database in Android ?

2009-08-13 Thread Alessio Grumiro
you have drop all tables, or using a new version of db of change database name. 2009/8/13 Emre A. Yavuz eayl...@hotmail.com Hi, Does anybody know how to DROP a database in Android ? I've tried ContextWrapper.deleteDatabase(), mDb.close(), mDbHelper.close() etc. methods with no luck so

[android-developers] Handle long click on ItemizedOverlay

2009-08-11 Thread Alessio Grumiro
Hello i've created an ItemizedOverlay and putted on my OvertlayItems.Now i want to able to manage long tap on item, what i need to do? Regards --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group.

[android-developers] Re: Close Application

2009-08-10 Thread Alessio Grumiro
Android kills your application if it is unused for long time.Your job is to close all application's activities with finish() method. Bye 2009/8/10 Blackmarket pascal.se...@gmail.com Hi, i want to add an exit button to the menu, but didn't see an easy way to close an application or acces

[android-developers] Re: Close Application

2009-08-10 Thread Alessio Grumiro
you have to close all application's activities! When you change activity, you have to call finish() on old activity, so just one activity is shown on screen and in stack. 2009/8/10 Blackmarket pascal.se...@gmail.com Doesn't work. It just closes the active Activity and changes to the last

[android-developers] Re: Text-To-Speech library

2009-08-10 Thread Alessio Grumiro
just googled and founded http://www.anddev.org/text-2-speech_tts_for_android_released-t3964.html 2009/8/10 Sujay Krishna Suresh sujay.coold...@gmail.com Hi all, is there any text to speech library in 1.5?? if so where is it??? how can we use it?? -- Regards, Sujay Charles

[android-developers] Re: Close Application

2009-08-10 Thread Alessio Grumiro
I don't know, but you can save each activitie in a static list. 2009/8/10 Blackmarket pascal.se...@gmail.com Is there a way to access all Activities of an Application? My Problem is, that i don't know how to access other activities to close them. On 10 Aug., 12:49, Alessio Grumiro a.grum