[android-developers] Android shared preference via JNI

2013-05-21 Thread Mr cool
in my android application in need to access the shared memory between the two application ,i knew android kernel is not like Linux kernel to implement the shared memory concept ,so i have choosen the shared preference in android but i need to implement this via JNI not in java part i have

[android-developers] Android :package with resource file in jar

2013-03-11 Thread Mr cool
I have planned to create an SDK in android, that means to share my class files and resource(layouts) to another application that requires them. If I export my application as JAR it does not include the resource files and R.class. I know currently Android does not support to packaging resource

[android-developers] Android updated zip not working

2013-02-22 Thread Mr cool
I need to push some .so files in android system directory such as system/lib and system/bin so I wrote updated-script in android and also I signed my zip, I did the following manner working directory system lib my.so I am using updated

[android-developers] Android c++ service at boot time

2013-02-14 Thread Mr cool
I need to start a service at boot time in android i don't use broadcast receiver , i wrote a service in c++ because i need access driver libusb layer to communicate with my extrernal device ,the service is working properly if i started manualy,if i want to start the service at boot time means

[android-developers] webview inside popup window

2013-01-24 Thread Mr cool
in my application i have to show the popup page in webview,i use javainterface for showing the popup,but i got the popup window but the page was not display i got the empty popup window in main page i call the javainterface method to show pop,i have cretaed the popup like this public void

[android-developers] how to show popup window in webview

2013-01-22 Thread Mr cool
i have developed web applictaion in android here i need to show the pop inside the webview, i tried in many way when i using window.open means it open on the same webview or it can load in browser. i have done the following settings WebSettings settings = Browser.getSettings();

[android-developers] thread wait in android

2012-11-30 Thread Mr cool
i have one problem with handling the thread in android ,in my class i have to create one thread which create some UI after that thread finish i will get some value ,here i want to wait my Main Process until the thread complete it process but when i put wait() or notify in Main process thread

[android-developers] how to close custom dialog class in android

2012-11-26 Thread Mr cool
I have a problem with closing a custom dialog. I have two classes class 1- AndroidHTMLActivity class 2- CustomizeDialog In my `AndroidHTMLActivity` I use java interface which is call from javascript, in this class i call `CustomizeDialog` public class

[android-developers] how to close custom dialog class in android

2012-11-26 Thread Mr cool
I have a problem with closing a custom dialog. I have two classes class 1- AndroidHTMLActivity class 2- CustomizeDialog In my `AndroidHTMLActivity` I use java interface which is call from javascript, in this class i call `CustomizeDialog` public class

[android-developers] image view on Customized dialog box

2012-11-22 Thread Mr cool
I have one problem with customized dialog box in android,i have created the customized dialog using javainterface in android ,in my class CustomizeDialog i have one thread do some process in back ground after that i have set one imgae to this customized dialog i set the image in OnPostExecute

[android-developers] Android Browser plug in

2012-10-29 Thread Mr cool
i am new android , i need to build a plug for android native browser ,i don't where i start it, i surfing internet i don't get correct source for my development any one have sample code for Android browser plug in -- You received this message because you are subscribed to the Google

[android-developers] how to build stand alone shared library in Android

2012-09-25 Thread Mr cool
i want build one stand alone shared library in android, i compile one sample application using arm-linux-androideabi-gcc but when i compile i doesn't load standard include files i got this error, how to link the standard include files in Android arm-linux-androideabi-gcc -fpic -c hello.c