Re: [android-developers] Can anybody tell me how can i disable BACK button on android?

2012-09-21 Thread ravi saini
just override this method- @override public void onBackPressed() { Toast.makeText(getApplicationContext(),back button click,1).show();} -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] xml file encryption and decryption

2012-09-20 Thread ravi saini
post your code than only we can check -- 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 to

Re: [android-developers] Updating progress bar in Application while downloading file using DownloadManager

2012-09-14 Thread ravi saini
use threading for updating the progress bar like first take the size of file and set that value to 100 of progress bar and every time just check how much data you got and update that value -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Scaling WebView disables the Vertical and horizontal Scroll bar

2012-09-11 Thread ravi saini
Hi All, I tried to scale the webview using setScaleX(float) and setScaleY(flaot). It Scaled my webview beyond the viewport. To see the content beyond the viewport i need the horizontal and vertical scroll bar which not enabled when i use the setScaleX and setScaleY functions. Is there any way

Re: [android-developers] validation on editTextbox

2012-09-06 Thread ravi saini
Hello Sadhna Upadhyay Try to use EditText android:inputType=text / Hope it will work for you. Thanks -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Re: How to set android:fillViewport=true for scrool view programatically?

2012-09-04 Thread ravi saini
in webview you can set like this - webview.setusewideviewport(true); -- 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 to

[android-developers] setinitialScale(value) works strangely ,one time on scale it wrap content and again scale it fix the content??

2012-09-03 Thread ravi saini
Hello i am working with android webview ,here i am using setinitialscale(some_value) on zoomin button but after using this if i am clicking that button to scale the page so one time it wraps i.e contents wraps to the device width and one time fixed i.e the content remains as it is and

[android-developers] Re: anyway to zoom in webview and to scroll complete content in both side(vertically and horizontally)

2012-09-02 Thread ravi saini
Any solutions?? -- 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 to android-developers+unsubscr...@googlegroups.com For more

Re: [android-developers] how to zoom webpage in webview android except scaling

2012-08-31 Thread ravi saini
no jayakumar by program on cliking of one gui button zoomin i have to do the zooming /scaling without default zoomin/out -- 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

Re: [android-developers] ActionBar on 2.3 API

2012-08-30 Thread ravi saini
hii please send the complete code of action bar to me also -- 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 to

[android-developers] how to zoom webpage in webview android except scaling

2012-08-30 Thread ravi saini
i am working with HTML webpages in web-view android so here i want to zoom the page on click of zoom button(i.e zoom level 30%,100%,200% ,300% etc) but i am not finding any function to zoom the page in webview upon the value i am passing like 30 for 30% etc. So i used scaling in web-view ,i

[android-developers] Re: how to zoom webpage in webview android except scaling

2012-08-30 Thread ravi saini
its urgent please send me your solutions fast,thanks -- 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 to

[android-developers] anyway to zoom in webview and to scroll complete content in both side(vertically and horizontally)

2012-08-29 Thread ravi saini
i am working with HTML webpages in web-view android so here i want to zoom the page on click of zoom button(i.e zoom level 30%,100%,200% ,300% etc) but i am not finding any function to zoom the page in webview upon the value i am passing like 30 for 30% etc. So i used scaling in web-view ,i

Re: [android-developers] how to get value from database in android

2012-08-29 Thread ravi saini
first make the connection with database i.e sqlite so first create the connection and after execute query to get the data and put it in cursor and from cursor you can get the data -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

Re: [android-developers] How to check which button is clicked

2012-05-21 Thread ravi saini
hii just implement your class activity from onclickListener and implement its method onclick and in that method you can use switch to get which button is pressed like switch (v.getId()) { case R.id.im1: { button1.setImageResource(R.drawable.p1o);