Re: [android-developers] sqllite database with data

2012-12-01 Thread Jovish P
Yes, it is possible. You have to keep the database in the asset folder of your application. Then copy the db to application directory. If you google out you view many samples for this Reference http://www.reigndesign.com/blog/using-your-own-sqlite-database-in-android-applications/ Regards, Jovish

Re: [android-developers] how to get the location of an incoming call

2012-11-29 Thread Jovish P
did u got any solution for this ? regards, jovi On Fri, Nov 23, 2012 at 12:49 AM, babrit <0678...@gmail.com> wrote: > > -- > 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@googlegr

Re: [android-developers] Clearing Activity History

2012-11-29 Thread Jovish P
finish the splash screen activity using this.finish() and move to search item screen. so it will be not there in the activity stack history. don't kwn it helped u or not. regards jovi On Fri, Nov 23, 2012 at 8:59 AM, Wayne wrote: > I am having trouble clearing the activity history in my Android

Re: [android-developers] read files (.doc .pdf .ppt)

2012-11-29 Thread Jovish P
wht do u mean by "files in localhost" ? if the files are under asstes folder of ur application and u want to open it from there . you can use AssetManager, through this class we can easily access any files lying inside

Re: [android-developers] Display contents of a database in a listview

2012-11-29 Thread Jovish P
Adapter that exposes data from a Cursorto a ListViewwidget. The Cursor must include a column named "_id" or this class will not work. http://developer.android.c

Re: [android-developers] Reading images/files from another apps resources

2012-11-29 Thread Jovish P
Check out this post * https://groups.google.com/forum/?fromgroups=#!topic/android-developers/S5nmfJvBCws * Jovish On Wed, Nov 28, 2012 at 2:48 PM, Russell Wheeler < russellpeterwhee...@gmail.com> wrote: > I am writing an app that will want to read images and audio files from > another 'data' app

Re: [android-developers] hi friends

2012-11-29 Thread Jovish P
first image listview with custom adapter and custom layout for each row. based on the check u can strike of the text view text TextView tv=(TextView) v.findViewById(android.R.id.text1); tv.setPaintFlags(tv.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG); second image listview itself and on cl

Re: [android-developers] hi..

2012-11-29 Thread Jovish P
Also we would like to know, if we install the application which has SQLite DBs using the .apk file, where is the Database saved in an Android Device. the sqlite database will be stored in the application directory. the user can delete this if he goes to settings and "clear data". then it will be

Re: [android-developers] Open PDF file from assets

2012-10-30 Thread Jovish P
When user clicks on a button i want to open the pdf file stored inside our application(ie which is inside Assets folder of our app). Open means , to view the pdf file using Intent. I don't have any problem in using third party applications to view pdf file.In the intent i sepcify mimetype , so it

[android-developers] Open PDF file from assets

2012-10-30 Thread Jovish P
In our application we are storing few pdf files inside asstes folder(<1MB). Using Intent we want to open that pdf. Is it possible ? If yes, how to do that ? What we tried : If we copy file from assets to sd card and then try to open using intent it is working. But we directly want to open it fr

Re: [android-developers] Re: Listview - Header , footer issue

2012-10-11 Thread Jovish P
"adapter" would just have to know how to inflate the "rows" > differently according to their type. > i.e - the first row is just a regular textview (the header). > the second to X row would be rows of the first "listview" you wanted. > X+1 row is again a textv

Re: [android-developers] Re: Listview - Header , footer issue

2012-10-09 Thread Jovish P
lot of effort, but after doing it a few times i've > noticed that it isnt. in some instances it even makes stuff easier. > > > On Tuesday, October 9, 2012 9:15:42 AM UTC+2, Jovish P wrote: >> >> In one of screen we want to come up with a desing like this >> >&g

[android-developers] Listview - Header , footer issue

2012-10-09 Thread Jovish P
In one of screen we want to come up with a desing like this Textview Listview Textview Listview First we thought of putting everything inside a linear layout with vertical orientation and put that layout inside a scroll view. Then we come to know that it is not a good idea. So right now what we

Re: [android-developers] Re: dictionary app

2012-09-26 Thread Jovish P
u can store all the words and meaning in a database and u have to retrieve the meaning from the database using sqlite querys go thru database samples regards, jovish On Wed, Sep 26, 2012 at 3:55 AM, bob wrote: > You will want to use a Hashtable. You fill in the keys with words and the > value

Re: [android-developers] send email

2012-09-25 Thread Jovish P
You can refer K-9 , K-9 is an opensource email client based on the Email application shipped with the initial release of Android. link : http://code.google.com/p/k9mail/ regards jovish On Tue, Sep 25, 2012 at 3:35 PM, Asheesh Arya wrote: > ibrahim just go through this link > http://www.jonde

Re: [android-developers] Sending an email with image from image view

2012-09-25 Thread Jovish P
you can refer the following link http://stackoverflow.com/questions/2264622/android-multiple-email-attachments-using-intent regards , jovish On Tue, Sep 25, 2012 at 5:45 PM, Sultan Ibrahim < sultan.ibra...@xintsolutions.com> wrote: > Hi , > > i want to send an email with image from image view,

Re: [android-developers] run configurations.

2012-09-25 Thread Jovish P
r u getting any message on the console when u try to run the application ? did u set any minimum sdk version for your application ? regards, jovish On Tue, Sep 25, 2012 at 7:52 PM, Salih Gündüz wrote: > I can not run my application in my galaxy s3 phone. Eclipse run > configuration did not reco

[android-developers] Please suggest good book on Android devlopment

2012-09-19 Thread Jovish P
I am planning to buy a book on android development. i searched the web. a lot of options are there. not able to figure out which is the best. I have one year expernice on android devlopment. please help me out which one wil be the best option regards, jovish -- You received this message because

Re: [android-developers] Re: Silent installation of third party applications

2012-09-19 Thread Jovish P
ou > can imagine this would be a great big security hole. > > > On Wednesday, September 19, 2012 3:10:17 PM UTC+1, Jovish P wrote: >> >> user wil be able to install third party application thru our application >> once user select the application we are downloading the a

[android-developers] Silent installation of third party applications

2012-09-19 Thread Jovish P
user wil be able to install third party application thru our application once user select the application we are downloading the apk file and installing it on the device.So once download is complete a prompt wil pop up whether user want to install it or not We want to hide this prompt. we want to

Re: [android-developers] Re: LogCat window is blank

2012-09-19 Thread Jovish P
some times i also used to exprnice the same problem. it wil stat working once i restart eclipse. not able to find out why it is happening Regards, Jovish On Wed, Sep 19, 2012 at 2:40 AM, Lew wrote: > bob wrote: > >> Has anyone figured out why the LogCat window is blank a lot of times? >> > > I

Re: [android-developers] Re: Custom View

2012-09-18 Thread Jovish P
Sorry i didn't get u . Can you please explain it little more On Sat, Sep 15, 2012 at 2:20 PM, Bubu Bubu21 wrote: > All I want to do is change the format from 123 123 1234 to 1234 123 123. > > > On Sat, Sep 15, 2012 at 11:44 AM, Jovish P wrote: > >> >> if we use

Re: [android-developers] Re: Text inside the spinner view overlaps arrow

2012-09-18 Thread Jovish P
r u using nine patch image for setting the spinner background ??? Regards, Jovish On Tue, Sep 18, 2012 at 4:04 PM, Ratheesh Valamchuzhy wrote: > Please reply its urgent !!! > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group. > To post

Re: [android-developers] Custom pop up option menu on button click

2012-09-18 Thread Jovish P
Check out this link http://www.stealthcopter.com/blog/2010/04/android-context-menu-example-on-long-press-gridview/ Regards, Jovish On Tue, Sep 18, 2012 at 8:09 PM, fahad mullaji wrote: > > Guys, > > I want to show pop menu on a button click like we have it on long press > event on list > It is

Re: [android-developers] Re: Custom View

2012-09-15 Thread Jovish P
if we use image view hw we wil change the text dynamically on onclick. On Sat, Sep 15, 2012 at 1:31 AM, bob wrote: > Sounds like you want to use an ImageView and do a setOnTouchListener. > > > > On Friday, September 14, 2012 11:05:38 AM UTC-5, Jovish P wrote: >> >>

[android-developers] Custom View

2012-09-14 Thread Jovish P
How to create a view like this (Please find the attached image) , which layout I want to use ? When we click on + button i need to change the text dynamically. Can you please share all your thought on how to do this ? Regards, Jovish -- You received this message because you are subscribed to t

Re: [android-developers] Re: How to dynamically change row layout of list view on click event

2012-08-13 Thread Jovish P
scribed in my first reply to > your question. > > > Thanks, > Justin Anderson > MagouyaWare Developer > http://sites.google.com/site/magouyaware > > > On Sun, Aug 12, 2012 at 8:03 AM, Jovish P wrote: > >> we are using a custom adapter only. in the adapter in getview

Re: [android-developers] Re: How to dynamically change row layout of list view on click event

2012-08-12 Thread Jovish P
have an attribute to tell if it is using row type 1 or 2. In the > onclick you change the model of the clicked item, you choose its row type > and you notify that the data have changed with notifyDataSetChanged(). > > Tell us if it works for you. > > > On Thursday, August 9, 2012

[android-developers] How to dynamically change row layout of list view on click event

2012-08-09 Thread Jovish P
We are using list view in our app with one simple row layout. But on click of list view we want to change the row layout of tht particular item . is it possible to do ? wht is the best approach ? Ho to add listeners to view inside the row layout? -- You received this message because you are subsc

Re: [android-developers] Re: Difference btwn following methods

2012-05-29 Thread Jovish P
t. I mean, this isn't > J2ME > >> or anything... > >> > >> G. Blake Meike > >> Marakana > >> > >> The second edition of Programming Android is now on-line: > >> http://shop.oreilly.com/product/0636920023005.do > >>

Re: [android-developers] Re: Difference btwn following methods

2012-05-28 Thread Jovish P
e java concept. > > - in first way you are giving name of object of TextView and second way > you are making anonymous object. > otherwise every thing is same. > > > Regards > Imran ali > > > On Monday, May 28, 2012 11:15:27 AM UTC+5:30, Jovish P wrote: >> >>

[android-developers] Difference btwn following methods

2012-05-27 Thread Jovish P
I just want to know any difference is there in the following methods like memory allocation , performance issues TextView txtView = (TextView)findViewById(R.id. username); txtView.setText("Method 1"); ((TextView) findViewById(R.id.priority_rel_layout)).setText(priorityList[i]); Regards, Jovish

[android-developers] Listview with multiple layout

2012-05-17 Thread Jovish P
In our app we have to show a screen just like below. The data is in a hash map with key value pairs. We want to show the keys of hashmap as header item of Listview and values for that keys as item layout under that key. Please help us how to implement this. Regards, Jovish -- You received thi

Re: [android-developers] Customizing Android Battery Icon

2012-05-02 Thread Jovish P
So through Android API we can't do that. That is what we can conclude from this discussion. thanks my friends Regards, Jovish On Fri, Apr 27, 2012 at 10:40 PM, Mark Murphy wrote: > On Fri, Apr 27, 2012 at 1:02 PM, lbendlin wrote: > > Not really needs custom firmware code, but needs custom artwo

[android-developers] Customizing Android Battery Icon

2012-04-26 Thread Jovish P
Is it possible to customize default Battery Icon on Android without rooting the phone ? Any APIs are available ? Any way to do that ? -- 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@g

Re: [android-developers] Re: Unable to open Html file using intent in deafult browser

2012-04-18 Thread Jovish P
*Mike *, I was not aware about this. From now onwards I will ask my doubts on StackOverFlow and Android Developers list also.Thanks for pointing this out. As per Justin we can discuss anything related to Android in this group. So I think it is not an issue. I think the chances to get reply from thi

Re: [android-developers] Re: How to install Market on Emulator ?

2012-04-18 Thread Jovish P
Thanks a lot for the info. I will give a try and let you know guys . On Tue, Apr 17, 2012 at 4:29 PM, Mark Murphy wrote: > On Tue, Apr 17, 2012 at 12:53 AM, Jovish P wrote: > > We are using push notification in our application. To test the push > > notification we need

[android-developers] Unable to open Html file using intent in deafult browser

2012-04-18 Thread Jovish P
In our app we are showing files stored in the sd card. We are unable to open html file which contains space in the name in default broswer. it invokes the default browser and shows following message "*The Web page at ontent://com.android.htmlprovider/sdcard/company info.html?test/html could not be

Re: [android-developers] Re: How to install Market on Emulator ?

2012-04-16 Thread Jovish P
arounds but we need to understand why you want the market. > > Vincent > > > On Monday, April 16, 2012 1:58:15 PM UTC+2, Jovish P wrote: >> >> We are able to install Android market on emulator, if the sdk is 3.0. If >> we update the sdk to 4.0 and follow the sa

[android-developers] How to install Market on Emulator ?

2012-04-16 Thread Jovish P
We are able to install Android market on emulator, if the sdk is 3.0. If we update the sdk to 4.0 and follow the same steps the android market is not getting installed. This is the link which we referred to install Android Market on emulator. Anyone know the reason behind this ? Please help me out

[android-developers] How to show arabic font in webview ?

2012-04-16 Thread Jovish P
How to show Arabic font in webview ? When we load arabic font it is showing junk characters Regards Jovish P -- 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@google

[android-developers] Re: [android-discuss] Re: Android Life cycle issue

2012-04-10 Thread Jovish P
> > On Tuesday, April 10, 2012 10:23:36 AM UTC-7, Jovish P wrote: >> >> In our app we are using following code >> >> Intent intent = new Intent(this,MailComposer.**class); >> intent.setFlags(Intent.FLAG_**ACTIVITY_CLEAR_TOP|Intent.** >>

[android-developers] Android Life cycle issue

2012-04-10 Thread Jovish P
getting invoked but in 1.6 onCreate() is getting invoked and onResume() after that. Why it is so ? Is it a bug in Android or fault from our side ? Please help me out .. Regards, Jovish p -- You received this message because you are subscribed to the Google Groups "Android Devel

[android-developers] Problem in opening downloaded file

2012-02-09 Thread Jovish P
In my app we are downloading few files and using following method to open that file. Whenever the filename contains space, the following method is not working . If it doesn't contains any space it is working perfectly. private void openDownladedReport(String filePath){ File file = new File(fileP

Re: [android-developers] Bitmap - Clarity issue

2011-12-07 Thread Jovish P
u use sub-sampling to create the first bitmap? > > Can you save the decoded image to a file and add it to gallery? You > could then use gallery system app to look at it in great detail. > Try zooming-in to see whether you have lost some details or not. > > > Daniel > > &g

Re: [android-developers] scrolling list on text enter in edit text.

2011-12-05 Thread Jovish P
You can use TextWatcher to implement this feature. Take a look into this link http://relsellglobal.info/knowshare/2011/08/textwatcher-demo-on-android-2-2/for more info regarding TextWatcher. On Tue, Dec 6, 2011 at 9:23 AM, TreKing wrote: > On Mon, Dec 5, 2011 at 2:39 PM, nikki wrote: > >> H

Re: [android-developers] Re: How do I get glow effect on a ImageView?

2011-11-29 Thread Jovish P
You can use selectors like below ,based on the state of imageview it will show the corresponding image. selector.xml http://schemas.android.com/apk/res/android";> you have to set "src" of imageview , which you need glow effect to @drawable/selector in the xml . chekout t

Re: [android-developers] df

2011-11-28 Thread Jovish P
For sample you can refer the below link http://www.41post.com/4374/programming/android-obtaining-sd-card-memory-information Thanks , Jovish P On Mon, Nov 28, 2011 at 6:58 PM, Mark Murphy wrote: > http://developer.android.com/reference/android/os/StatFs.html > > On Mon, Nov 28, 2011 a

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

2011-11-28 Thread Jovish P
Level 1 > Create a new empty, non focusable popup window of dimension (0,0). > The popup does provide a background. > > >> constructs a PopupWindow of dimension 0,0 ...so here we need to set the > width and height as below > popupWindow.setWidth(400); > popupWindow.s

Re: [android-developers] Vertically Aligning the Image Buttons

2011-11-28 Thread Jovish P
you can also use LinearLayout with vertical orientation .. Check the below link for more info regarding Layouts http://developer.android.com/guide/topics/ui/layout-objects.html On Mon, Nov 28, 2011 at 1:37 PM, Raghav Sood wrote: > AbsoluteLayout is deprecated. You can easily get the button

Re: [android-developers] Re: Where do we use uses-feature android:required="false"?

2011-11-27 Thread Jovish P
I think your app won't be visible in androiid market who is using mobile phone doesn't have camera, assuming that camera is needed for your app to work if you are not using . If your app work even without camera , then you have to use to avoid the filtering by android market. Execuse for my eng

Re: [android-developers] Where do we use uses-feature android:required="false"?

2011-11-26 Thread Jovish P
if an application requests the CAMERA permission but does not declare a element for android.hardware.camera, Android Market considers that the application: http://developer.android.com/guide/topics/manifest/uses-feature-element.htmlrequires a camera and should not be shown to users whose devices d

Re: [android-developers] Re: How to load videos from assets folder? (to play them with VideoView)

2011-11-25 Thread Jovish P
check out this link http://javatech.org/2011/01/discovering-android-embedding-video-in-an-android-application/ On Fri, Nov 25, 2011 at 11:18 PM, Lew wrote: > Damn, dude, that was only three hours (not even!) before you nagged! > > You have to allow a couple of days before you can nag for answe

Re: [android-developers] matching texview in layout

2011-11-25 Thread Jovish P
line: > preciption > preciption > > > > On Sat, Nov 26, 2011 at 1:19 AM, Jovish P wrote: > > Can you please make your your question little more clear ??? > > if you want to design a layout like this , it is very simple. You are > using > > same id for both te

Re: [android-developers] ListView text goes black when scrolling the content

2011-11-25 Thread Jovish P
Refer the following link http://developer.android.com/resources/articles/listview-backgrounds.html to know the reason why it is happening . On Fri, Nov 25, 2011 at 5:12 PM, Mukesh Srivastav wrote: > You are always Welcome Mr.KK. > > > Warm Regards, > *Mukesh Kumar*, > Android Consultant/Freelanc

Re: [android-developers] matching texview in layout

2011-11-25 Thread Jovish P
Can you please make your your question little more clear ??? if you want to design a layout like this , it is very simple. You are using same id for both textviews, may be because of that you are facing issues. Preciption:preciption Relhumidity:relhumidity On Sat, Nov 26, 20

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

2011-11-25 Thread Jovish P
// Start of code for PopupWindow PopupWindow popupWindow = new PopupWindow(context); TextView textView = new TextView(context); popupWindow.setContentView(textView); LayoutParams layoutParams = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT); textView.setLayoutParams(layoutPa

Re: [android-developers] Re: Webview weird redirect

2011-11-21 Thread Jovish P
Try to over ride this method onPageFinished(WebView view, String url). This method will be called every time a page loaded in your webview. In this method check the loaded url is the final url or not. @Override public void onPageFinished(WebView view, String url) {

Re: [android-developers] how to decompose .apk file

2011-11-21 Thread Jovish P
Try this link :: http://apkdecompile.com/ On Mon, Nov 21, 2011 at 4:50 PM, s.rawat wrote: > I think you meant *extracting *it so that you could see its > contents,Unzip or unrar it using Win Zip , you will be on your way then ; ! > > Cheers > !! > Saurabh > > "..pain is temporary.quitting

[android-developers] Pefrence Activity - onclick issue

2011-11-15 Thread Jovish P
In our app we are using an Activity which extends PreferenceActivity. In this activity we declared a public method to handle the click and reference this method from the xml. On click event the method which we referred in the xml is not getting executed , the control not even going to that method.

Re: [android-developers] half image on application

2011-11-15 Thread Jovish P
*Set visibility:* You can hide or show views using setVisibility(int) . *public void setVisibility* * (int visibility) Since: API Level 1* Set the enabled state of this view. Related XML Attributes - andro

Re: [android-developers] How to publish app in Kindle Fire Market place

2011-11-11 Thread Jovish P
I understood my mistake .. Sorry . On Fri, Nov 11, 2011 at 12:53 AM, TreKing wrote: > On Thu, Nov 10, 2011 at 8:47 AM, Jovish P wrote: > >> Any one know How to publish app in kindle fire market place and BN.com's >> Market >> Place? >>

[android-developers] How to publish app in Kindle Fire Market place

2011-11-10 Thread Jovish P
Any one know How to publish app in kindle fire market place and BN.com's Market Place? -- 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,

Re: [android-developers] Re: apps are not shown in the in mobile app store but visible from pc browser

2011-11-10 Thread Jovish P
et.android.com/search?q=techpanels.net > model number of the phones i tried to download are > GT-S5360 (samsung) and > Micromax A60 > > > > On Nov 10, 1:36 pm, Jovish P wrote: > > In which app store the app is not visible ? Model of your phone ? Did you > > che

Re: [android-developers] apps are not shown in the in mobile app store but visible from pc browser

2011-11-10 Thread Jovish P
In which app store the app is not visible ? Model of your phone ? Did you checked whether the app is visble in other mobile models ? You added two times one with 2 and other with 4. This can be a reason .Don't know exactly . Remove it and chek it out. On Thu, Nov 10, 2011 at 12:44 PM, lak

Re: [android-developers] Application incompatible when trying to install on Galaxy 10.1

2011-11-09 Thread Jovish P
I did what you suggested , what is happening now is If I run the app in 1.6 emulator my app is getting crashed since I am using following method to check whether Telephony is available or not. hasSystemFeature() method is not there is 1.6. that is the reaon why it is crashing how to handle this

Re: [android-developers] Sending Multiple Request

2011-11-09 Thread Jovish P
Thanks TreKing , yeah definitely I will try it myself and will ask questions if I am stuck ... On Thu, Nov 10, 2011 at 9:23 AM, TreKing wrote: > On Wed, Nov 9, 2011 at 6:38 AM, Jovish P wrote: > >> Is it possible to send multiple request to the server at the same

Fwd: [android-developers] attachment through mail

2011-11-09 Thread Jovish P
Try this one public static void sendAsAttachment(Context context, File file){ Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND); emailIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL,new String[] { " cta...@gmail.com" }); e

Fwd: [android-developers] hyperlink using textview

2011-11-09 Thread Jovish P
Just refer the following links http://mgmblog.com/2009/01/06/four-different-ways-of-opening-a-web-page-in-android/ http://pareshnmayani.wordpress.com/2011/07/08/android-textview-autolink-attribute/ -- Forwarded message -- From: Pawan Singh Rathore Date: Wed, Nov 9, 2011 at 6:5

[android-developers] Sending Multiple Request

2011-11-09 Thread Jovish P
Is it possible to send multiple request to the server at the same time and merge the response of those request ? If it is , which is the best way to implement it ? Async Task or Threading ? If any one have sample code , please share it if you don't mind . -- You received this message becau

Re: [android-developers] Application incompatible when trying to install on Galaxy 10.1

2011-11-08 Thread Jovish P
don't need to set your minSdkVersion to anything specific just to > declare in your manifest that you optionally require a feature. > > On Fri, Nov 4, 2011 at 3:32 AM, Jovish P wrote: > >> In our application , we are showing >> details of customer such as phone number

[android-developers] Application incompatible when trying to install on Galaxy 10.1

2011-11-04 Thread Jovish P
In our application , we are showing details of customer such as phone number , email id , address. When he clicks on phone number we are initiating call, email means opening the native email client and if it is address we are mapping that address in Google maps. supports from 1.6 We are adding the

Re: [android-developers] ViewSwitcher and webview - Android

2011-11-01 Thread Jovish P
Thanks a lot . I did a sampel of it. On Mon, Oct 31, 2011 at 9:36 PM, TreKing wrote: > On Mon, Oct 31, 2011 at 9:41 AM, Jovish P wrote: > >> Is it possible to create a viewswitcher in which one view is a linear >> layout and other with a webview ? > > >

[android-developers] ViewSwitcher and webview - Android

2011-10-31 Thread Jovish P
Is it possible to create a viewswitcher in which one view is a linear layout and other with a webview ? -- 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] How to load a html file from sd card in a webview ?

2011-10-28 Thread Jovish P
How to load an html file which downloaded to SDCard through my application in a webview ??? Regards , Jovish P -- 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@googlegro

Re: [android-developers] Re: will you suggest me

2011-10-28 Thread Jovish P
You can refer following link s http://developer.android.com/index.html Links of few blogs which I used to refer android-journey.blogspot.com androidcore.com www.androidengineer.com andmob.wikidot.com iamvijayakumar.blogspot.com pareshnmayani.wordpress.com saigeethamn.blogspot.com On Fri, Oct

[android-developers] Issue with deleting cookies - Webview

2011-10-27 Thread Jovish P
In our application, we are embeding a webview inside an activity and removing all cookies. In the android devlopers console crash report , we are getting following exception for the users and we are not able to reporduce this issue. We are not able to figure out the issue. Attaching the code belo

[android-developers] Listview - DialogBox issue

2011-10-27 Thread Jovish P
In my application , one screen extends List Activity and on click of List view I am showing a dialog box with two edit text-box where user has to enter username and password . Whenever he clicks on the edit text box , the app getting crashed. It's throwing null pointer exception in the adapter cla

[android-developers] BlueTooth File Transfer

2011-09-30 Thread Jovish P
How to transfer a file from my application to another phone through Bluetooth ? Any API is available for it ? If it's there from which level it's supported ? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email

[android-developers] ListHow to hide listview scrollbar when not scrolling

2011-09-27 Thread Jovish P
I want to hide a listview's scrollbar when the listview isn't scrolling and show it when scrolling. If API levle is 5 or greater we can use setScrollbarFadingEnabled(fadeScrollbars).But bow to implement the same effect on lower API level? I tried to implement setOnScrollListener() and based on scr