[android-developers] Re: Google Analytics Hits not delivered

2016-10-12 Thread Emanuele Albero
Hi Chirag, i'm facing the same issue. have you solved it? Can you give me a hint? Emanuele Il giorno giovedì 14 luglio 2016 10:19:01 UTC+2, Chirag Manwani ha scritto: > > I have been trying to implement Google Analytics in my app by following > the steps on the official docu

[android-developers] Re: AsyncTask in Android 4.0

2012-05-16 Thread Emanuele Ricci
Hi Michael do you have some good alternative to the current AsyncTask implementation? Anyway the real big big big problem is for the 3rd party library or SDK that my project is currently used. I'm using some ads SDK and I'm pretty sure that they are using also AsyncTask in the normal way so

[android-developers] Re: How to detect bluetooth headset is connect in SDK 9?

2012-03-23 Thread Emanuele Ricci
That action is fired when you UNPLUG the headset or the bt device as explained in the description On Friday, October 28, 2011 3:14:46 PM UTC+2, lbendlin wrote:

[android-developers] How to join Android Media query search suggest

2012-01-02 Thread Emanuele Ricci
I will explain a little more my scenario. I'm extending the default music player with other features and informations. So I've a sqlite db where I store those informations in addiction of the MediaStore. I want to extend the default search suggestions (for audio) with suggestions from my

[android-developers] Re: listview adapter. Recycle bitmap

2011-10-17 Thread emanuele
bitmap, correct? Steven Studio LFPhttp://www.studio-lfp.com On Sunday, October 16, 2011 4:14:48 AM UTC-5, emanuele wrote: Hello guys.. that s my baseAdapter getview implmentation: @Override public View getView(int position, View convertView, ViewGroup parent) { int type

[android-developers] listview adapter. Recycle bitmap

2011-10-16 Thread emanuele
Hello guys.. that s my baseAdapter getview implmentation: @Override public View getView(int position, View convertView, ViewGroup parent) { int type = getItemViewType(position); if (convertView == null) { switch (type) {

[android-developers] Memory retained by fragments android

2011-10-15 Thread emanuele
Hello there, could somebody explain me when the memory retained by fragment is released? For instance, If I have a fragment into the back stack and i call popBackStack with the inclusive flag, all the resource allocate with the fragment would be freed? What If I call remove on transaction instead?

[android-developers] ListFragment addHeaderView and addFooterView issue

2011-10-09 Thread emanuele
hello there, I ve two ListFragments maganed by a tabhost. Firt time I switch between tab all is alright. The headerView is correctly added. The second time I switch between fragment I get this execption: 10-05 15:15:01.585: ERROR/AndroidRuntime(23263): java.lang.IllegalStateException: Cannot add

[android-developers] Fragment Rotation and WebView

2011-10-02 Thread emanuele
Hello guys, in my design I have a FragmentActivity (FA) with a ListFragment (LF). When user clicks on an item, a new fragment composed of a webview with some information is shown, when a the mobile is in portrait and a FragmentDialog is shown when the mobile is in landscape. After some times I go

[android-developers] Re: how start fragments

2011-09-27 Thread emanuele
by starting another activity. IOW, keep the fragments themselves ignorant of screen size to the extent possible. On Sat, Sep 24, 2011 at 10:13 AM, emanuele emanuel...@gmail.com wrote: Hello guys, I ve the following scenario: A fragmentActivity which manage four different ListFragment

[android-developers] popbackstack in fragmetns

2011-09-27 Thread emanuele
Hello there, in my design I ve 4 ListFragments managed by a FrameActivity with tabhosts. For every ListFragment i keep its history (addToBackStack(String name)). Switching beetwen ListFragment I want to clear the tab content and display the content of the new ListFragment. In the FrameActivity I

[android-developers] how start fragments

2011-09-26 Thread emanuele
Hello guys, I ve the following scenario: A fragmentActivity which manage four different ListFragment. Every ListFragment can launch different kind of fragments and these could launch others fragments. What I need to understand is who can or cannot launch fragments. Is responsability of the

Re: [android-developers] OpenGL Samsung Galaxy S2 S II Problem With Rotation

2011-09-09 Thread emanuele padula
be grateful if you post your solution once you find it. thanks marcin On Tue, Sep 6, 2011 at 1:03 AM, emanuele padula e.pad...@gmail.com wrote: Thank you Christopher. I'll do some test regarding the mipmapping, but i'm not sure that it will work. Thank you for you suggestion. 2011/9/5

Re: [android-developers] OpenGL Samsung Galaxy S2 S II Problem With Rotation

2011-09-05 Thread emanuele padula
Thank you Christopher. I'll do some test regarding the mipmapping, but i'm not sure that it will work. Thank you for you suggestion. 2011/9/5 Christopher Van Kirk christopher.vank...@gmail.com I'm seeing a similar problem on that device, but I haven't spent any time looking for an answer yet.

Re: [android-developers] Re: SQLite complex query and handling results

2011-06-10 Thread Emanuele Ricci
, Jun 10, 2011 at 2:15 AM, Zsolt Vasvari zvasv...@gmail.com wrote: Use a WHERE clause so you only get 2 rows returned. On Jun 10, 6:17 am, Emanuele Ricci ste...@gmail.com wrote: Good evening ( for me ), I'm Emanuele a young android developer. I want to share with you my problem because I'm

Re: [android-developers] Re: SQLite complex query and handling results

2011-06-10 Thread Emanuele Ricci
you'll only have a single row per post. Another alternative is to simply not use CursorAdapter but write your own work-alike instead, possibly starting from the CursorAdapter source code. Pepijn On 10/06/2011 09:24, Emanuele Ricci wrote: Maybe you don't understand. I'll make an example TABLE

Re: [android-developers] Re: SQLite complex query and handling results

2011-06-10 Thread Emanuele Ricci
Ok I solved it: SELECT posts.post_id, posts.post_title, GROUP_CONCAT(categories.category_name) AS categories_name, GROUP_CONCAT(categories.category_id) AS categories_id, GROUP_CONCAT(tags.tag_id) AS tags_id, GROUP_CONCAT(tags.tag_name) AS tags_name FROM posts LEFT OUTER JOIN posts_categories ON

R: Re: [android-developers] Re: SQLite complex query and handling results

2011-06-10 Thread Emanuele Ricci
SELECT posts.post_id, posts.post_title, GROUP_CONCAT(categories.category_name) AS categories_name, GROUP_CONCAT(categories.category_id) AS categories_id, GROUP_CONCAT(tags.tag_id) AS tags_id, GROUP_CONCAT(tags.tag_name) AS tags_name FROM posts INNER JOIN posts_categories ON

Re: [android-developers] Re: SQLite complex query and handling results

2011-06-10 Thread Emanuele Ricci
Why Google in IOSched is not using it? On Fri, Jun 10, 2011 at 11:27 AM, Nikolay Elenkov nikolay.elen...@gmail.com wrote: On Fri, Jun 10, 2011 at 5:24 PM, Emanuele Ricci ste...@gmail.com wrote: Ok I solved it: SELECT posts.post_id, posts.post_title, GROUP_CONCAT

Re: [android-developers] Re: SQLite complex query and handling results

2011-06-10 Thread Emanuele Ricci
I was talking about ORM in general. IOSched is not a so little application so maybe creating an ORM tool to integrate in Android was not a so bad idea :) On Fri, Jun 10, 2011 at 11:47 AM, Nikolay Elenkov nikolay.elen...@gmail.com wrote: On Fri, Jun 10, 2011 at 6:30 PM, Emanuele Ricci ste

[android-developers] SQLite complex query and handling results

2011-06-09 Thread Emanuele Ricci
Good evening ( for me ), I'm Emanuele a young android developer. I want to share with you my problem because I'm not finding a good solution. I've 3 tables (in reality 5) posts categories posts_categories to create the many-to-many relation between posts and categories I've created

Re: [android-developers] Re: native heap size and ddms

2011-01-17 Thread emanuele
@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -- Emanuele Gringeri Computer Engineer

[android-developers] View.onAnimationEnd

2011-01-14 Thread emanuele
Hello guys, i was playing with animations (scaleanimation) and I notice a thing bit strange.. If while an animation is started I re-instantiate the animation object and try to restart it, the onAnimationEnd callback in nerver called. Is that the correct behaviour? thanks in advance. -- Emanuele

[android-developers] Re: application code for SDK 1.5 and 1.6

2009-09-25 Thread Emanuele
Thanks a lot for the tip. So using this technique the application will be anyway installed in the device (if I don't specify the minorSDKVersion in the manifest.xml) even if the device SDK doesn't have the class I use in the Reflection or wrapper class? Thanks Emanuele On 25 Set, 12:35, Mark

[android-developers] Re: ScrollView disappears when the keyboard appears on the screen

2009-08-12 Thread Emanuele
Solution found. Set adjustPan for the android:windowSoftInputMode parameter for the activity in the manifest. Emanuele On 11 Ago, 16:09, EPecorari emanuele.pecor...@gmail.com wrote: I have the following layout: ?xml version=1.0 encoding=utf-8? LinearLayout xmlns:android=http

[android-developers] EditText and Virtual Keyboard

2009-06-22 Thread Emanuele Di Saverio
on the corresponding virtual key on the onscreen virtual keyboard, all these callbacks do not get called at all! This is strange, given that If I press other keys like alhpanumerical, the events are called. Can someone explain me this behaviour of the EditText component? Thanks a lot -Emanuele

[android-developers] Log vs Logger

2009-03-16 Thread Emanuele Di Saverio
should only be used when building custom loggers? Thanks -Emanuele --~--~-~--~~~---~--~~ 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