[android-developers] GooglePlay Installation for Emulator (Marshmallow/Noughat)

2016-08-28 Thread Zeeshan Maqbool
I have tried so many options/blogs/scripts to install GooglePlay for Emulator (running through Android Studio) but it never works. I have seen so many different errors 1. Failure [INSTALL_FAILED_UPDATE_INCOMPATIBLE] 2. Failure [INSTALL_PARSE_FAILED_NO_CERTIFICATES] 3. No space left on

[android-developers] How to resolve import com.google.android.gms.common.api.ResultCallback;

2016-06-09 Thread zeeshan pervez
As we know google-play-services are divided in to different small classes.(screesnshot 1 ) I am trying to find the suitable class for import *com.google.android.gms.common.api.ResultCallback*; but cannot able to find that. If someone know which class will use or know the process to solve

[android-developers] call the default home screen from application?

2011-12-15 Thread ZeeShaN AbbAs
I need to call the default home screen that comes with my phone from my application even if its not set as default. I've tried searching and find this ArrayListIntent intentList = new ArrayListIntent(); Intent intent=null; final PackageManager packageManager=getPackageManager();

[android-developers] make or receive call secretly programmatically Android

2011-11-28 Thread ZeeShaN AbbAs
hey I want to make a call from my application, so far I found that code Intent callIntent = new Intent(Intent.ACTION_CALL, Uri.parse(tel: + phoneNumber)); callIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); context.startActivity(callIntent); /code but there is a problem that I want to call

[android-developers] make or receive call secretly programmatically Android

2011-11-28 Thread ZeeShaN AbbAs
hey I want to make a call from my application, so far I found that code Intent callIntent = new Intent(Intent.ACTION_CALL, Uri.parse(tel: + phoneNumber)); callIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); context.startActivity(callIntent); /code but there is a problem that I want to call

[android-developers] Add the widgets in my application

2011-10-07 Thread Zeeshan Abid
hi guys, I ma working on a launcher. I want to add the widgets of installed application in my app. can anyone tell that what would be the steps that i add the appwidgst and launch it. Thanks in advancce -- Zeeshan Abid -- You received this message because you are subscribed to the Google

[android-developers] Combining Tween and Frame Animations

2011-08-29 Thread Zeeshan Haider
I'm new to the android development, and working my way through android tutorials available on Android website more specifically relating to animation. Now I know how to apply tween and frame by frame animations, but I can't figure out how to combine these two animations to run simultaneously

Re: [android-developers] yahoo local search xml reply in android

2011-01-02 Thread zeeshan mirza
i am working on it, i will share it with u as soon as i finish it. Regards, Zeeshan On Fri, Dec 31, 2010 at 1:19 PM, Nandlal Viranni nandlal.phys...@gmail.com wrote: Hello , How have you done this local search to find nearest coffee shop or resturant in android ? I want also to do same

[android-developers] yahoo local search xml reply in android

2010-12-28 Thread zeeshan mirza
I am using yahoo local search in my android application to find nearest coffee shop or resturant. I am receiving a reply from yahoo local search service in XML form. I dont know how to process such xml reply. Do i need to parse this xml reply? and how can i read the contents of the reply? -- You

Re: [android-developers] yahoo local search xml reply in android

2010-12-28 Thread zeeshan mirza
Thank you for your reply Frank. I know about parsing and I am using SAX parser. I want to know how can i read a specific tag or element from xml response. For example in yahoo local search response there is title, address, city, state, phone and many more for each cactegory. Category means coffee

[android-developers] Local Search on google maps

2010-12-21 Thread zeeshan mirza
I am looking for a code example like Place application available in android which helps you to find resturans of coffee shops aroudn you. I want to code my own application like that place application but not on a very heigh level but just on a learning level. Let me know if somebody knows a

Re: [android-developers] Local Search on google maps

2010-12-21 Thread zeeshan mirza
thanks treking for your reply. Do you know if there is any code example available about this place API ? What is the difference between google SEARCH API and Place API ? I think search api can also be used for finding places? -- You received this message because you are subscribed to the Google

Re: [android-developers] Re: Local Search on google maps

2010-12-21 Thread zeeshan mirza
Thanks for your reply spiral. Is it possible to use ajax in android application? and is there any query limitation? -- 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

Re: [android-developers] Re: Difference between Android 2.2 and Google API for Android

2010-12-08 Thread Zeeshan Hanif
Hi, Thanks, is there any link or reference from where I can find out these additional APIs. Regards, Zeeshan Hanif On Tue, Dec 7, 2010 at 4:56 AM, vogella lars.vo...@googlemail.com wrote: The Google one contains also API which is not part of the standard Android SDK. For example

[android-developers] Difference between Android 2.2 and Google API for Android

2010-12-06 Thread Zeeshan Hanif
Hi, I'm unable to understand the difference between Standard Android platform 2.2 and Android + Google APIs. Because while adding Platform in Netbeans we can add either of two. Regards, Zeeshan Hanif -- You received this message because you are subscribed to the Google Groups Android

[android-developers] picture uploading from android application to php server

2010-12-03 Thread zeeshan mirza
Hello Friends, I want to upload images from android application to php server. Both are developed by me. Server is not accepting files from android client. Please have a loot at my code and let me know if someone knows the problem. I am using xampp for apache and php. Here is my code for php

Re: [android-developers] Upload picture to php server

2010-12-03 Thread zeeshan mirza
from server ? //Zeeshan -- 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

[android-developers] Upload picture to php server

2010-12-02 Thread zeeshan mirza
); } inStream.close(); } catch (IOException ioex){ Log.e(MediaPlayer, error: + ioex.getMessage(), ioex); } } } Please help if anybody knows where the problem is. //Zeeshan -- You received this message because you are subscribed to the Google

[android-developers] Re: Upload picture to php server

2010-12-02 Thread zeeshan mirza
sorry for my long poste, but is there anyone who can help me ?? //Zeeshan -- 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] Re: Exported apk will not install, no error message

2010-11-04 Thread Zeeshan Ghalib
If you have an older version installed in the phone, try uninstalling it using adb. For example: adb uninstall com.android.samples I hope it helps. Zeeshan On Nov 2, 9:27 pm, Abbe dyngh...@gmail.com wrote: Hello! The app runs in the emulator, the apk in the bin directory runs on my phone

[android-developers] Re: How to update my database with an xml hosted on a website?

2010-11-04 Thread Zeeshan Ghalib
Watch the following video before you design this part of your application. http://www.youtube.com/watch?v=xHXn3Kg2IQEsns=em Regards, Zeeshan On Nov 3, 2:00 pm, Vidal rodrigovida...@gmail.com wrote: Good morning everyone, I am new to programming with Java and Android, I'm trying to make

Re: [android-developers] Re: Context and Intent

2010-10-28 Thread zeeshan mirza
. This is the main idea behind Context and Intent. Let me know if i am right or wrong. //Zeeshan -- 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] unable to get current location on map

2010-10-28 Thread zeeshan mirza
(); } } } any suggestion ?? BR, Zeeshan -- 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

Re: [android-developers] Re: Context and Intent

2010-10-28 Thread zeeshan mirza
I mixed content with context. Sorry my mistake. Here is content provider documentation. http://developer.android.com/guide/topics/providers/content-providers.html -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

Re: [android-developers] unable to get current location on map

2010-10-28 Thread zeeshan mirza
Hello TreKing, I will try it outside but let me know is it okey with code? Please point out if there is any mistake?? -- 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

[android-developers] inner classes in android

2010-10-26 Thread zeeshan mirza
SomeInterface someMethod() { return mainClass.this; } } } Can we create this subClass as an individual class and later on use its methods in mainClass? if not Why? //Zeeshan -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] Re: inner classes in android

2010-10-26 Thread zeeshan mirza
I am a student not a professional developer. So plz answer my question if you can. //shan -- 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

Re: [android-developers] Re: inner classes in android

2010-10-26 Thread zeeshan mirza
Frank thank you for your answer. I know some points when do we need to create inner classes like we cant extend more than one class so if we create inner classes we can extend more classes. Am i right? is there any other advantage of inner classes ? -- You received this message because you are

[android-developers] Context and Intent

2010-10-22 Thread zeeshan mirza
Hello, I have a question about android. I just want to know what is Context and what is Intent in android world. Kindly give an example where we can pass a Context and Intent to a method. //Shan -- You received this message because you are subscribed to the Google Groups Android Developers

Re: [android-developers] Re: ScrollView

2010-10-19 Thread zeeshan mirza
yes I have checked it. But the layout is out of scrollView. So it should be at the bottom. Widgets inside the scrollview can be scrolled down or up. Try to run my Layout xml file. //Zeeshan -- You received this message because you are subscribed to the Google Groups Android Developers group

[android-developers] ScrollView Problem

2010-10-18 Thread zeeshan mirza
Hello Friends, I am having a scrollview problem. There are 2 EditText fields which are broken. here is my layout file. Please let me know how can i solve it. ?xml version=1.0 encoding=utf-8? LinearLayout xmlns:android=http://schemas.android.com/apk/res/android; android:orientation=vertical

[android-developers] ScrollView

2010-10-18 Thread zeeshan mirza
I am having problem with the loswet 2 editText fields. They are not clearly visible. They are broken. Here is my layout file. Please let me know if anybody finds out the problem. ?xml version=1.0 encoding=utf-8? LinearLayout xmlns:android=http://schemas.android.com/apk/res/android;

Re: [android-developers] Re: ScrollView Problem

2010-10-18 Thread zeeshan mirza
the last 2 editText fields are overlapping. I am using RelativeLayout for organization. Have a deeper look to my XML. Try to run it just copy and paste. //Zeeshan -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] landscape View problem

2010-10-18 Thread zeeshan mirza
android:layout_height=45dip android:text=Next android:layout_marginTop=2dip android:layout_alignParentRight=true/ /RelativeLayout /LinearLayout //Zeeshan -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] layout scrollview Problem

2010-10-17 Thread zeeshan mirza
Hello Friends, I am a new android developer. I am developing a simple application that will take user input from user and on button click the data will load in database. I am having problem with scrollView. There are 2 text fields which are broken. I want to know why they are broken and if

Re: [android-developers] Re: browse picture gallery

2010-10-06 Thread zeeshan mirza
thank u very much both of u opy01 and nam :) I am able to open picture gallery i have written some of my own code. i want that when i select or click any picture in library that pic should appear on a layout as a full image. Regards, Zeeshan -- You received this message because you

[android-developers] browse picture gallery

2010-09-28 Thread zeeshan mirza
me? Thanks in advance :) BR, Zeeshan -- 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

Re: [android-developers] Re: double tap zoom on Google maps

2010-08-12 Thread zeeshan mirza
Thank you very much Barm. Your reply helped me alot :) BR, Zeeshan On Sun, Aug 1, 2010 at 1:55 PM, Bram van Driel bramvandr...@gmail.com wrote: Hi Zeeshan, Maybe you can study this implementation of a MapActivity and OnGestureDetector: http://blog.js-development.com/2009/12/mapview-doesnt

[android-developers] Google maps Zoom problem

2010-07-12 Thread zeeshan mirza
Im using google maps in my application. im implementing onDoubleTap() method for zoom in google map. i have written some code but nothing happened when i double tap on google map. I have 2 questions. 1. Is it possible to check DoubleTap in emulator? 2. I am sharing my code here. Please if

Re: [android-developers] Re: double tap zoom on Google maps

2010-07-11 Thread zeeshan mirza
I am forwading onTouchEvent() now but still i need lilbit more help. Have a look at my previous 2 or 3 posts. BR, Shan On Sat, Jul 10, 2010 at 11:40 AM, zeeshan mirza zeeshan.nabeel.mi...@gmail.com wrote: Can you see what i have replied rather than criticizing whether i can develop

Re: [android-developers] Re: double tap zoom on Google maps

2010-07-10 Thread zeeshan mirza
can't understand that, maybe building this app is kinda out of your league. On Jul 10, 3:23 am, zeeshan mirza zeeshan.nabeel.mi...@gmail.com wrote: Anyone who can help me BR, shan On Fri, Jul 9, 2010 at 12:28 AM, zeeshan mirza zeeshan.nabeel.mi...@gmail.com wrote: I

Re: [android-developers] double tap zoom on Google maps

2010-07-09 Thread zeeshan mirza
Anyone who can help me BR, shan On Fri, Jul 9, 2010 at 12:28 AM, zeeshan mirza zeeshan.nabeel.mi...@gmail.com wrote: I am now forwading touch event to gestureDetector but let me know what to add more ? @Override *public* *boolean* onTouchEvent(MotionEvent event

Re: [android-developers] double tap zoom on Google maps

2010-07-08 Thread zeeshan mirza
: Maybe the problem is you are not forwarding touch events to the GestureDetector I would expect to see something like @Override public boolean onTouchEvent(MotionEvent evt) { return detector.onTouchEvent(evt); } On 07/06/10 21:07, zeeshan mirza wrote: Here is my own

Re: [android-developers] double tap zoom on Google maps

2010-07-07 Thread zeeshan mirza
I just want to implement onDoubleTap() zoom in. There is just a default zoom in (+) and zoom out (-) button on screen i want to add the functionality that when i double click on map (phone screen) the map should zoom in. Regards, Zeeshan On Wed, Jul 7, 2010 at 4:51 PM, TreKing treking

Re: [android-developers] double tap zoom on Google maps

2010-07-07 Thread zeeshan mirza
I am not unable to handle onDoubleTap() zoom in event. I got some help from a webpage and i am working on it since 1 week but unable to write the correct code. Regards, Zeeshan On Wed, Jul 7, 2010 at 5:00 PM, TreKing treking...@gmail.com wrote: On Wed, Jul 7, 2010 at 9:56 AM, zeeshan mirza

Re: [android-developers] double tap zoom on Google maps

2010-07-07 Thread zeeshan mirza
I am unable to handle onDoubleTap() zoom in event. I got some help from a webpage and i am working on it since 1 week but unable to write the correct code. Regards, Zeeshan On Wed, Jul 7, 2010 at 5:04 PM, zeeshan mirza zeeshan.nabeel.mi...@gmail.com wrote: On Wed, Jul 7, 2010 at 5:00 PM

Re: [android-developers] double tap zoom on Google maps

2010-07-06 Thread zeeshan mirza
Here is my own code which i have written up till now. I am trying to implement onDoubleTap() zoom in function in my application. My code is as follows. LEt me know where is the problem ? and if possible please add the correct code for double tap zoom in function. public class Maps extends

Re: [android-developers] Re: Cannot get PhoneNumber on Real device but code works in Emulator

2010-03-10 Thread Zeeshan Muhammad
I am also having the same problem. String MSISDN = ((TelephonyManager) this.getSystemService(this.TELEPHONY_SERVICE)).getLine1Number(); returns null. is there any way i can get MSISDN? can i get it by sms? On Wed, Sep 23, 2009 at 6:15 AM, an0 an0...@gmail.com wrote: I've the same

[android-developers] MediaPlayer DRM support?

2010-02-22 Thread zeeshan
HI Dear, does anybody know if Android Default mediaplayer supports any DRM scheme? if not then what are the ways to do this? any help plz -- 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] can i access opencore modules at application level?

2010-02-22 Thread zeeshan
Hi Dear, i am looking for some help to access libraries in opencode at application space. like libOmxCore.so, CPM plugin, pvplayer etc. if i need to change anything for CPM plugin, do i need to compile Android source or i can do at application level? can anybody help? -- You received this

[android-developers] Re: How to make a Downloadable DRM Module

2010-02-22 Thread zeeshan
Hi Peter, i just started research as part of my research assignment on DRM module. i want embeded solution which i assume you have already done. can you please guide me ? steps? On Feb 20, 1:25 pm, Peter Lee dongha@gmail.com wrote: Hello~ I am trying to make a DRM module downloadable on

[android-developers] Re: question regarding pv player

2010-02-21 Thread zeeshan
wrote: No. MediaPlayer.java usesPVPlayerinternally. On Feb 20, 2:32 am, zeeshan genx...@gmail.com wrote: Hi Dear, isPVplayerAPI available at Android application level? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] question regarding pv player

2010-02-19 Thread zeeshan
Hi Dear, is PV player API available at Android application level? -- 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] Re: USB driver doesn't work with Xperia 10

2010-02-17 Thread zeeshan
i am able to connect my HTC magic but still struggling with xperia 10 t connect with debugger. On Feb 16, 1:06 pm, Jonas Petersson jonas.peters...@xms.se wrote: zeeshan wrote: Thanks for your reply Jonas, i am using Windows 7. got the USB driver revision 3 by Android setup but it doesn't

[android-developers] Re: USB driver doesn't work with Xperia 10

2010-02-16 Thread zeeshan
Thanks for your reply Jonas, i am using Windows 7. got the USB driver revision 3 by Android setup On Feb 16, 9:54 am, Jonas Petersson jonas.peters...@xms.se wrote: Hi zeeshan, zeeshan wrote: i am not able to connect my Android device with debuger, it might be because my driver

[android-developers] Re: USB driver doesn't work with Xperia 10

2010-02-16 Thread zeeshan
Thanks for your reply Jonas, i am using Windows 7. got the USB driver revision 3 by Android setup but it doesn't work with my device On Feb 16, 9:54 am, Jonas Petersson jonas.peters...@xms.se wrote: Hi zeeshan, zeeshan wrote: i am not able to connect my Android device with debuger, it might

[android-developers] Re: adb can't list my attached device

2010-02-15 Thread zeeshan
I tried the same but still cant see my devices in attached device list. i am using sony Ericsson Experia device. do i need to install any driver ? On Feb 13, 6:41 pm, deeMurthy darshana.mur...@wipro.com wrote: Its possible that the server is not running or there is some error w.r.t. it.U can

[android-developers] adb can't list my attached device

2010-02-11 Thread zeeshan
Hi Dear, i am trying to install an app to my Android Sony Ericsson Xperia device but not able to connect it to adb. i can access phone's sdcard drive in windows but adb devices command doesn't show any device connected, not even through eclipse. i figured out that i need to install device

[android-developers] how to access MTP library through Android ?

2010-02-10 Thread zeeshan
Hi Dear, i recently started exploring about MTP (Media Transfer Protocol) for Android. according to the thread below, G1 supports MTP http://forums.t-mobile.com/t5/ARCHIVED-Help-How-To/Synchronizing-music-with-Windows-Media-Player/m-p/4561#M5079 now what i understand is that, MTP is not a part

[android-developers] how can i upload photo to flickr in photostream project?

2009-12-20 Thread zeeshan
Hi Dear, i am working on flickr api for Android and need some help to solve the following problem. after a quick research on flick api, i managed to authenticate flickr by api, secret key but unable to get photoset as flickr.jar use the javax.imageio library which is not available in Android and

[android-developers] how to get back to the activity from a webview (very urgent)

2009-12-18 Thread zeeshan
Hi Dear, i need to call a webview to launch a url for authentication process and need to get back once authentication is successful, dont know how can i kill webview and resume the process on first activity. here is what i am trying Activity1: public OnClickListener loginButtonListener = new

[android-developers] Re: cant see my text box while typing on soft keypad

2009-10-29 Thread zeeshan
any help plz On Oct 28, 4:10 pm, zeeshan genx...@gmail.com wrote: Hi Dear, i have a relative layout with Edit text fileds and some buttons at bottom. when i try to write anything on edittext field in the middle of screen, it just being hidden by the keypad and buttons layout comes on top

[android-developers] My layout doesn't fit on WVGA emulator skin , any help?

2009-10-29 Thread zeeshan
Hi Experts, i been working on default skin before, if i change my skin to WVGA , my layout displays only in a portion of the skin and the rest of screen is black. although, i can see android's home screen in full view. do i need to change my skin settings or my layout itself?

[android-developers] cant see my text box while typing on soft keypad

2009-10-28 Thread zeeshan
Hi Dear, i have a relative layout with Edit text fileds and some buttons at bottom. when i try to write anything on edittext field in the middle of screen, it just being hidden by the keypad and buttons layout comes on top. any idea how can i have soft keypad working fine for my edit texts?

[android-developers] Re: search string for market

2009-10-19 Thread zeeshan
can anybody help plz On Oct 14, 1:51 pm, zeeshan genx...@gmail.com wrote: Hi dear, i using the following code for my APP search Intentintent= newIntent(Intent.ACTION_VIEW);intent.setData(Uri.parse(market://search?q=pname:QueryString)); startActivity(intent); is it possible tochangethe

[android-developers] problem in the touch event

2009-10-14 Thread zeeshan
Hi Dear, i am having a problem handling the touch event on a button layout. i added a button layout into the webview and have a touch event on webview. touch event is mixed with the button click event. please help me how can i handle it --~--~-~--~~~---~--~~ You

[android-developers] search string for market

2009-10-14 Thread zeeshan
Hi dear, i using the following code for my APP search Intent intent = new Intent(Intent.ACTION_VIEW); intent.setData(Uri.parse(market://search?q=pname:QueryString)); startActivity(intent); is it possible to change the QueryString once App is downloaded?

[android-developers] will flash support effect java developers?

2009-10-06 Thread zeeshan
Hi Dear, i believe there are some new android devices coming with flash support. so there would be plenty of flash apps available demanding flash developers. wondering if that effects on android java developers? --~--~-~--~~~---~--~~ You received this message

[android-developers] how to set button's x y position in layout

2009-10-05 Thread zeeshan
Hi Dear, i am trying to display a linear layout , say at setpadding (10,10,0,0); now i need to put some buttons at particular xy position in layout. Button button = new Button(_context); button.setPadding(xposition, yposition, 0, 0); layout.addView(button); button position doesn't seem to

[android-developers] Re: how to set button's x y position in layout

2009-10-05 Thread zeeshan
can anybody help ? waiting for the reply On Oct 5, 2:04 pm, zeeshan genx...@gmail.com wrote: Hi Dear, i am trying to display a linear layout , say at setpadding (10,10,0,0); now i need to put some buttons at particular xy position in layout. Button button = new Button(_context

[android-developers] Re: Dynamic Image loading from Resources in ImageView

2009-10-01 Thread zeeshan
Hi Dear, i need a similar solution like R.drawable.+myVairable for my stateDrawable. i have 2 stateButtons defined in res/Drawable/statebutton1.xml and res/Drawable/statebutton2.xml now i need to use a variable for Button image like Button.setBackgroundResource(R.drawable.variablename) i

[android-developers] Re: run Android app on iPhone

2009-09-25 Thread zeeshan
do i need to rewrite my existing android code for COCOA touch support? On Sep 25, 3:53 am, Shawn Brown big.coffee.lo...@gmail.com wrote: HI, Has anyone tried this cross compiler to get their Android app to run on an iPhone? http://xmlvm.org/android/ Shawn

[android-developers] can i play gif?

2009-09-25 Thread zeeshan
Hi Dear, i am trying to play a gif by is = context.getResources().openRawResource (R.drawable.animated_gif); mMovie = Movie.decodeStream(is); but mMovie remains null. BitmapDecode.java example in apiDemo is not working either i am using this code

[android-developers] can i use external fonts ?

2009-09-24 Thread zeeshan
Hi Dear, i need to use my external font .ttf file for button's text. can anybody help --~--~-~--~~~---~--~~ 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] Re: can i use external fonts ?

2009-09-24 Thread Zeeshan Muhammad
thanks On Thu, Sep 24, 2009 at 9:46 AM, Mark Murphy mmur...@commonsware.comwrote: i need to use my external font .ttf file for button's text. can anybody help http://developer.android.com/reference/android/graphics/Typeface.html then, call setTypeface() on your Button. -- Mark

[android-developers] Re: android application enable handset

2009-09-16 Thread Zeeshan Muhammad
i am also looking for the answer. On Wed, Sep 16, 2009 at 11:11 AM, Ajaz Ahmed ajazahme...@gmail.com wrote: Hi, Can any one send me the list of android application enable handset, where i can install my android application? want to know about company,model ?? Regards!

[android-developers] Re: how and where to save SecretKey for encryption and decryption

2009-08-27 Thread zeeshan
need the most rock-solid solution possible, but if it's something minor then encryption may be a waste of time entirely. On Aug 26, 2:46 pm, zeeshan genx...@gmail.com wrote: key never change once its been created. as i know SecretKey generates by a funtion as above, how can i set

[android-developers] which algorithm is fast for Cipher encryption and decryption?

2009-08-27 Thread zeeshan
Hi Dear, i encrypt some of the images but it takes so long for encryption and decryption. encryption of images in sdcard are just to void straight copy and a very simple encryption would be ok for instance. please check my code below and advise how can i make it fast: static{

[android-developers] how and where to save SecretKey for encryption and decryption

2009-08-26 Thread zeeshan
Hi Dear, i wrote a small application which encrypt some files using a secret key. i need to decrypt files on 2nd run which requires same key again plz advise where should i store the secret key. --~--~-~--~~~---~--~~ You received this message because you are

[android-developers] Re: how and where to save SecretKey for encryption and decryption

2009-08-26 Thread zeeshan
better to ask the user for the secret key rather than storin it smwhere. On Wed, Aug 26, 2009 at 4:30 PM, zeeshan genx...@gmail.com wrote: Hi Dear, i wrote a small application which encrypt some files using a secret key. i need to decrypt files on 2nd run which requires same key again plz

[android-developers] Re: how and where to save SecretKey for encryption and decryption

2009-08-26 Thread zeeshan
On Aug 26, 12:28 pm, Sujay Krishna Suresh sujay.coold...@gmail.com wrote: If it is only used by ur application, jus use a String instance to hold the key. y store in a file?? ll the key change dynamically??? On Wed, Aug 26, 2009 at 4:55 PM, zeeshan genx...@gmail.com wrote: encryption

[android-developers] Re: how and where to save SecretKey for encryption and decryption

2009-08-26 Thread zeeshan
key never change once its been created. as i know SecretKey generates by a funtion as above, how can i set it as constant can you plz provide example? On Aug 26, 1:39 pm, Sujay Krishna Suresh sujay.coold...@gmail.com wrote: On Wed, Aug 26, 2009 at 5:41 PM, zeeshan genx...@gmail.com wrote

[android-developers] Re: Playing a video file from resource.

2009-08-21 Thread Zeeshan Muhammad
this might help you AssetFileDescriptor afd = getResources().openRawResourceFd(R.raw.video); // Create a new media player and set the listeners mMediaPlayer = new MediaPlayer(); mMediaPlayer.setDataSource(afd.getFileDescriptor(), afd.getStartOffset(),

[android-developers] Re: ParseException: At line 1, column 0: not well-formed (invalid token)

2009-08-21 Thread Zeeshan Muhammad
can anybody help? On Thu, Aug 20, 2009 at 4:58 PM, zeeshan genx...@gmail.com wrote: Hi Dear, i am totally lost in this error: org.apache.harmony.xml.ExpatParser$ParseException: At line 1, column 0: not well-formed (invalid token) i have spent the whole day trying to figure out why i am

[android-developers] what is .config file to download from web server?

2009-08-20 Thread zeeshan
Hi Dear, i need to download some files from web server and i just got to know that i should have a config file on server which defines all the files url. wondering if anybody have sample of this download.config file? --~--~-~--~~~---~--~~ You received this

[android-developers] ParseException: At line 1, column 0: not well-formed (invalid token)

2009-08-20 Thread zeeshan
Hi Dear, i am totally lost in this error: org.apache.harmony.xml.ExpatParser$ParseException: At line 1, column 0: not well-formed (invalid token) i have spent the whole day trying to figure out why i am getting this error but not seems to have any luck here is the faulty code android doesn't

[android-developers] can i move assets from app to sdcard

2009-08-20 Thread zeeshan
Hi Experts, as my app is too big in size and it seems a long job downloading resources from web server. i want to move my files from assets folder in the app to sdcard on first run. is this possible? --~--~-~--~~~---~--~~ You received this message because you are

[android-developers] Re: Application Resources on SDCARD on install!! MUST HAVE, GOOGLE DO SOMETHING!!

2009-08-19 Thread Zeeshan Muhammad
Hi Tjerk, your thread is really usefull and i appreciate your research. i am trying to implement the downloader you suggested but having some problem. i am wondering which link i needed for private final static String FILE_CONFIG_URL = http://example.com/download.config;; how this config

[android-developers] question regarding download.config

2009-08-19 Thread zeeshan
Hi Experts, i am trying to download my app resources from web server using the downloder program below. http://code.google.com/p/apps-for-android/source/browse/#svn/trunk/Samples/Downloader/src/com/google/android/downloader as a fresh developer i dont know about the .config file needed in the

[android-developers] Re: question regarding download.config

2009-08-19 Thread Zeeshan Muhammad
can anybody help plz On Wed, Aug 19, 2009 at 1:49 PM, zeeshan genx...@gmail.com wrote: Hi Experts, i am trying to download my app resources from web server using the downloder program below. http://code.google.com/p/apps-for-android/source/browse/#svn/trunk/Samples/Downloader/src/com

[android-developers] how can i install App in the sdcard?

2009-08-18 Thread zeeshan
Hi Experts, i am trying to installl android app but it gives me insufficient memory exception. i already have 35 Apps and there is 5mb internal storage left. is that mean i can install applications only upto 125MB. my sdcard is almost empty , is there any way to install my App in the sdcard?

[android-developers] Re: how can i install App in the sdcard?

2009-08-18 Thread zeeshan
://androidforums.com/android-tips-tricks/5316-running-apps-sd-car... On Aug 18, 12:27 pm, zeeshan genx...@gmail.com wrote: Hi Experts, i am trying to installl android app but it gives me insufficient memory exception. i already have 35 Apps and there is 5mb internal storage left

[android-developers] Connect Device to PC through USB

2009-08-14 Thread Zeeshan Khan
Hi, Is it possible to connect to PC through USB from android application. Or is it possible by any other way. I want to connect to it to transfer data(video) Regards, Zeeshan --~--~-~--~~~---~--~~ You received this message because you

[android-developers] Re: Connect Device to PC through USB

2009-08-14 Thread Zeeshan Khan
not necessarily represent those of T-Mobile USA, Inc. On Aug 14, 10:05 am, Chris Stratton cs07...@gmail.com wrote: On Aug 14, 8:23 am, Zeeshan Khan zeeshanno...@gmail.com wrote: Hi, Is it possible to connect to PC through USB from android application. Or is it possible

[android-developers] how to play video from raw folder?

2009-08-13 Thread zeeshan
Hi Dear, i am trying to play a video in my activity before i load my main page of my application. i have created another activity PlayIntro as follows private void playVideo() { try { /* * TODO: Set the path variable to a local media file

[android-developers] Re: how to play video from raw folder?

2009-08-13 Thread zeeshan
yes i already tried it but it gives me null exception On Aug 13, 4:17 pm, zeeshan genx...@gmail.com wrote: Hi Dear, i am trying to play a video in my activity before i load my main page of my application. i have created another activity PlayIntro as follows  private void playVideo

[android-developers] Re: how to play video from raw folder?

2009-08-13 Thread Zeeshan Muhammad
and statements in this email are those of the author solely in their individual capacity, and do not necessarily represent those of T-Mobile USA, Inc. On Aug 13, 8:57 am, zeeshan genx...@gmail.com wrote: yes i already tried it but it gives me null exception On Aug 13, 4:17 pm, zeeshan genx

[android-developers] Re: how to play video from raw folder?

2009-08-13 Thread Zeeshan Muhammad
){ mRawList.add(your_sdcard_raw_folder_path+raw_file); } } 我的英语很逊,我来自中国。: ) 2009/8/13, zeeshan genx...@gmail.com: Hi Dear, i am trying to play a video in my activity before i load my main page of my application. i have created another activity PlayIntro

[android-developers] how to package several android projects

2009-08-12 Thread zeeshan
Hi Dear, i have 5 versions of an android application and wanted to package them all in my eclipse environment. i believe there is xcode tool does the similar job for iphone but dont know about the android. can anybody help? --~--~-~--~~~---~--~~ You received this

[android-developers] Re: book page flip transition

2009-08-12 Thread zeeshan
yes sure thanks for the reply anyway On Aug 11, 4:58 pm, karthikr karthik.scintill...@gmail.com wrote: Hi zeeshan, Even ive been trying to implement this but in vain. Will post and also mail you incase if im able to get through. Do post in case your able to find the actual implementation

  1   2   3   >