[android-developers] Are custom xml attributes supported on current aapt version ?

2012-04-22 Thread Gil Eichenbaum
I just upgraded my SDK and wanted to find out if custom attributes are supported now, or should I get a patched aapt version like i had to do before? -- 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] Using ClassLoader to load class from another apk

2011-12-12 Thread gil eichenbaum
I have two apps installed which share same user id. I can get resources from the second .apk, and now I want to load a class from it, but allways fail (ClassNotFound exeption). What is the correct way to do this? -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: How do you load class from a sharedUser apk file?

2011-11-29 Thread gil eichenbaum
I have also found this: http://yenliangl.blogspot.com/2009/11/dynamic-loading-of-classes-in-your.html which did seem to help, but still can't get to load my class from another apk. any suggestions ? -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: How do you load class from a sharedUser apk file?

2011-11-29 Thread gil eichenbaum
Tried that one as well (my.package.myclass), but still get the same result. -- 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

[android-developers] How do you load class from a sharedUser apk file?

2011-11-28 Thread gil eichenbaum
Hello Everyone! I am trying to load a class from another .apk which uses the same sharedUser as my apk. No matter what I try, I always get just ClassNotFoundExeption. This is one thing I have tried: classLoader = context.createPackageContext(pInfo.packageName, 0).getClassLoader();

[android-developers] Re: How to show PopupWindow in an Activity on some click event

2011-11-28 Thread gil eichenbaum
try adding this: popupWindow.setWindowLayoutMode(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT); -- 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

[android-developers] Re: Disable long press on soft Keyboard in android

2011-11-28 Thread gil eichenbaum
Isn't filtering the input text inside your editText enough to get what you need? -- 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

[android-developers] Re: Disable long press on soft Keyboard in android

2011-11-28 Thread gil eichenbaum
 it  will  popup  options  and  upon selection  ,it  will  be  displayed  in Edittext. Thanks, DEEPAK KUMAR On Mon, Nov 28, 2011 at 8:26 PM, gil eichenbaum gileichenb...@gmail.comwrote: Isn't filtering the input text inside your editText enough to get what you need? -- You

[android-developers] how can I post questions here ?

2011-11-23 Thread gil eichenbaum
I have tried posting a question, but it never got to be on the thread. What sould I do? -- 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,

[android-developers] Issue 9656: Library projects don't support custom XML attributes for custom classes

2011-11-23 Thread gil eichenbaum
From what i have read about new ADT R.15, I hoped this issue is solved by now, but when I tried compiling my library project and the projects that use it, I got same error saying error: No resource identifier found for attribute. I was using a sulotion offered here:

[android-developers] ?Is it now possible to declare a custom attribute in a library project

2011-11-22 Thread gil eichenbaum
I know this issue has been disscused in many places, but I couldn't find a good answer for it. I am developing a library project, which declares custom attributes and uses them locally, and I want to re-use these attributes on the applications which will use that library. I am now using ADT

[android-developers] ?Is it now possible to declare a custom attribute in a library project

2011-11-22 Thread gil eichenbaum
I know this issue has been disscused in many places, but I couldn't find a good answer for it. I am developing a library project, which declares custom attributes and uses them locally, and I want to re-use these attributes on the applications which will use that library. I am now using ADT