[android-developers] Force close msg for few seconds when application starts, why?

2009-03-13 Thread zeeshan
Hi Android Experts, i am having a force close Dialogue msg for few seconds when i run my application. can anyone tell me why is that and how can i resolve it. do i need to use thread to start my main activity? any solution? --~--~-~--~~~---~--~~ You received this

[android-developers] CheckBox test= (CheckBox) findViewById(R.id.test); returns null

2009-03-17 Thread zeeshan
Hi Android Experts, why CheckBox is always null. please find the error in my code: xml- CheckBox id=@+id/checkbox android:layout_width=wrap_content android:layout_height=wrap_content / code file- package com.reblogr.reblogrclient; public class Test extends

[android-developers] Can i convert AMR to MP3 OR WAV in my activity?

2009-03-18 Thread zeeshan
Hi Android Experts, i want to convert recorded AMR sound into mp3 or WAV within my activity, is there any method or package i can use? i am using this activity for recording: Intent intent = new Intent (MediaStore.Audio.Media.RECORD_SOUND_ACTION); startActivityForResult(intent, SELECT_AUDIO);

[android-developers] Re: CheckBox test= (CheckBox) findViewById(R.id.test); returns null

2009-03-18 Thread zeeshan
, 10:25 am, zeeshan genx...@gmail.com wrote: i changed the id but still same Null object. same result for TextView and ProgressBar as well, however i can use EditText successfully. On Mar 17, 5:04 pm, dan raaka danra...@gmail.com wrote: Try changing the id and see if it makes any

[android-developers] Re: Can i convert AMR to MP3 OR WAV in my activity?

2009-03-18 Thread zeeshan
AMR to MP3 or WAVE. If you want to do this in the current SDK, you'll need to write your own code to do the conversion. On Mar 18, 2:44 am, zeeshan genx...@gmail.com wrote: Hi Android Experts, i want to convert recorded AMR sound into mp3 or WAV within my activity, is there any method

[android-developers] Re: Can i convert AMR to MP3 OR WAV in my activity?

2009-03-19 Thread zeeshan
? On Mar 18, 2:31 pm, zeeshan genx...@gmail.com wrote: Thanks for reply Dave, can anyone tell me how can i do this, i assume to install any converter application and use it in my code to convert and return the mp3 uri please help me - On Mar 18, 10:31 am, Dave Sparks davidspa

[android-developers] Button (with background image ) doesn't show press action

2009-03-20 Thread zeeshan
Hi Android Experts, i have a login button as below: Button android:id=@+id/loginBtn android:layout_width=wrap_content android:layout_height=wrap_content android:layout_gravity=center android:background=@drawable/enter_button

[android-developers] Re: Can i convert AMR to MP3 OR WAV in my activity?

2009-03-23 Thread zeeshan
onActivityResult(int requestCode, int resultCode, Intent data) { . Uri selectedAudio = data.getData(); at the moment this Uri is the recorded amr file but i really need mp3/ wav format for some reason. any solution would be appreciated! thanks On Mar 19, 9:21 am, zeeshan

[android-developers] Re: Button (with background image ) doesn't show press action

2009-03-23 Thread zeeshan
thanks On Mar 20, 4:39 pm, Romain Guy romain...@google.com wrote: Hi, Is your background a state-list drawable? If not, the behavior you're witnessing is normal. On Fri, Mar 20, 2009 at 9:35 AM,zeeshangenx...@gmail.com wrote: Hi Android Experts, i have a login button as below:

[android-developers] how to get selected indexof a listview (urgent plz)

2009-03-23 Thread zeeshan
Hi Android Experts, i need to get the selected index off my listview i have it in Activity: public class myClass extends Activity { private ListView myListView; myListView.setAdapter(aa); // i got an example to get index in context menu like public boolean

[android-developers] how can i pick audio in startActivityForResult

2009-03-23 Thread zeeshan
Hi Experts, i need to select audio from my playlist which intent can help me? --~--~-~--~~~---~--~~ 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: how can i pick audio in startActivityForResult

2009-03-24 Thread zeeshan
Hi Experts, i need to select audio from my playlist which intent can help me? On Mar 23, 5:37 pm, zeeshan genx...@gmail.com wrote: Hi Experts, i need to select audio from my playlist which intent can help me? --~--~-~--~~~---~--~~ You received

[android-developers] change background color on focus

2009-03-24 Thread zeeshan
Hi, i need to have the default selection color (orange), here is my code Button android:id=@+id/login android:layout_width=wrap_content android:layout_height=wrap_content android:layout_gravity=left

[android-developers] android http GET 400 error

2009-03-25 Thread zeeshan
Hi Android Experts, i need to make a GET request to the http://www.x.com/server.xml which takes 3 mandatory headers hdr1,hdr2,hdr3 i am trying this code try { String path = http://x.com/server.xml;; HashMap parameters = new HashMap();

[android-developers] Re: android http GET 400 error

2009-03-25 Thread zeeshan
with the mandatory headers i just added just wondering if something wrong in my code or in server itself. shall i use httpget method? On Mar 25, 12:27 pm, Mark Murphy mmur...@commonsware.com wrote: zeeshan wrote: Hi Android Experts, i need to make a GET request to thehttp://www.x.com/server.xmlwhich

[android-developers] Re: android http GET 400 error

2009-03-25 Thread zeeshan
thanks for the reply Mark! i tried httpget also but same 500 error. is there any sniffing tool i can configure with emulator to check the exact http trafic format? On Mar 25, 1:25 pm, Mark Murphy mmur...@commonsware.com wrote: zeeshan wrote: well, thanks i added these headers

[android-developers] crash application on change mode

2009-03-25 Thread zeeshan
Hi Experts, i am trying to set an image which is working fine but when i change mode to/from portrait, it crashes at the following line imageicon.setImageURI(image_uri); here is my imageicon in xml ImageView android:id=@+id/imageicon

[android-developers] is video recording available in V1.1?

2009-03-25 Thread zeeshan
Hi Experts, i am looking for video recording example, it suppose to be in api- sample but not available i am wondering if 1.1 release still missing this feature? if it does support then in which format and where is the example also i am trying to figure out mp3 encoding long ago but still no

[android-developers] Http GET method with extra headers

2009-03-26 Thread zeeshan
Hi Experts, i am trying a GET request to my server with some extra headers dont know how can i add header here is my code: DefaultHttpClient client = new DefaultHttpClient(); HttpGet method = null; HttpResponse resp = null; method = new HttpGet( new URI(url) );

[android-developers] HttpGet.addHeader

2009-03-26 Thread zeeshan
Hi Experts, i am trying to add header on HttpGet but it raise this exception InvocationTargetException here is my code: DefaultHttpClient client = new DefaultHttpClient(); HttpGet method = null; HttpResponse resp = null; String url = http://www.x.com/a.xml;;

[android-developers] Re: HttpGet.addHeader

2009-03-26 Thread zeeshan
, this.user_agent_id); ? On Thu, Mar 26, 2009 at 2:54 PM, zeeshan genx...@gmail.com wrote: Hi Experts, i am trying to add header on HttpGet but it raise this exception InvocationTargetException here is my code: DefaultHttpClient client = new DefaultHttpClient();            HttpGet

[android-developers] Re: HttpGet.addHeader

2009-03-26 Thread zeeshan
: method.getParams().setParameter(http.useragent, this.user_agent_id); ? On Thu, Mar 26, 2009 at 2:54 PM, zeeshan genx...@gmail.com wrote: Hi Experts, i am trying to add header on HttpGet but it raise this exception InvocationTargetException here is my code: DefaultHttpClient

[android-developers] Re: android http GET 400 error

2009-03-27 Thread zeeshan
thanks Mark. I installed HTTPDebugger on Window and understand i was sending a post. i changed my code to HttpGet and its working fine now. On Mar 25, 4:16 pm, Mark Murphy mmur...@commonsware.com wrote: zeeshan wrote: thanks for the reply Mark! i tried httpget also but same 500 error

[android-developers] access android device on pc

2009-03-30 Thread zeeshan
Hi Experts, i have recorded one file in android and trying copy it. i attached device to my pc (windows), got removeable device but cant enter into it. any solution? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[android-developers] out of memory exception on setImageURI

2009-03-31 Thread zeeshan
Hi Experts, i am having out of memory exception at image_view.setImageURI(Uri.parse (imageFile)); it is working fine as long as i keep the same orientation, but when i change the orientation, it gives me exception. i am passing imageFile from calling activity as string. here is a piece of my

[android-developers] send bytes[] buffer in httppost

2009-04-01 Thread zeeshan
Hi Experts, i need to post image on server by http post with some parameters, here is a piece of code i am trying: List NameValuePair nvps = new ArrayList NameValuePair(); nvps.add(new BasicNameValuePair(message[content],abc)); nvps.add(new BasicNameValuePair(message[image],?)); // here i

[android-developers] Re: android.provider.MediaStore.RECORD_SOUND

2009-04-02 Thread zeeshan
try this Uri recordedAudio = data.getData(); On Apr 1, 5:45 am, estivenrpo estiven...@gmail.com wrote: Hi, I try to use the android.provider.MediaStore.RECORD_SOUND intent and it work perfect, the problem that i have is whit the uri when the file is saved...  the file is saved on /sdcard

[android-developers] OutOfMemoryError (external allocation too large for this process)

2009-04-02 Thread zeeshan
Hi Experts, I am beating my head against a wall since 3 days trying to resolve out of memory exception but still no success. here is the line giving me this error image_view.setImageURI(image_uri); everytime when i change the orientation or start this activity again, it gives me out of

[android-developers] Re: OutOfMemoryError (external allocation too large for this process)

2009-04-02 Thread zeeshan
/ it loads the image for first time but gives exception on rotation or 2nd load. plz advise if u have any alternative solution or how can i call recycle () on it. On Apr 2, 12:43 pm, Mark Murphy mmur...@commonsware.com wrote: zeeshan wrote: Hi Experts, I am beating my head against a wall

[android-developers] Re: OutOfMemoryError (external allocation too large for this process)

2009-04-02 Thread zeeshan
larger than the screen. That's just unrealistic on a constrained device like a cell phone. JBQ On Thu, Apr 2, 2009 at 8:08 AM, zeeshan genx...@gmail.com wrote: any solution? On Apr 2, 2:05 pm, zeeshan genx...@gmail.com wrote: thanks for the reply Mark, yes u r right issue

[android-developers] Re: Taking a picture Intent?

2009-04-06 Thread zeeshan
Hi, i have the same question, anybody answer plz On Apr 6, 4:07 am, Ivan Soto ivanso...@gmail.com wrote: Hi, I have an Activity for my application to take pictures and store them with a content provider. The problem is that obviously I would like the picture to auto rotate depending if I

[android-developers] startActivityForResult on tab

2009-04-06 Thread zeeshan
Hi Experts, i need to start startActivityForResult on a tab click, here is my activity senario: Activity A calling startActivityForResult - B (tab activity) startActivityForResult - C onResult - A - D onResult - A tabHost.addTab(tabHost.newTabSpec(Search)

[android-developers] Re: startActivityForResult on tab

2009-04-06 Thread zeeshan
any solution? On Apr 6, 10:44 am, zeeshan genx...@gmail.com wrote: Hi Experts, i need to start startActivityForResult on a tab click, here is my activity senario: Activity A  calling startActivityForResult - B (tab activity) startActivityForResult - C onResult - A - D onResult

[android-developers] set activity label in activity code

2009-04-14 Thread zeeshan
Hi Experts, i need to change activity label on the title bar in my code. at the moment i am setting it in manifest as below: activity android:name=.ToDoList android:label=my list intent-filter action android:name=android.intent.action.MAIN /

[android-developers] question about orientation sensor

2009-04-15 Thread zeeshan
Hi Android Experts, i am wondering if we can change orientation just by sensing the layout position, port or land;without flip like iphone does any example would be appreciated --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[android-developers] Re: question about orientation sensor

2009-04-15 Thread zeeshan
can anyone help? On Apr 15, 10:28 am, zeeshan genx...@gmail.com wrote: Hi Android Experts, i am wondering if we can change orientation just by sensing the layout position, port or land;without flip like iphone does any example would be appreciated

[android-developers] Re: question about orientation sensor

2009-04-15 Thread zeeshan
are looking for is screen orientation :sensor for your activity in your manifest. Chris On 15 avr, 13:13, zeeshan genx...@gmail.com wrote: can anyone help? On Apr 15, 10:28 am, zeeshan genx...@gmail.com wrote: Hi Android Experts, i am wondering if we can change orientation just

[android-developers] Re: question about orientation sensor

2009-04-15 Thread zeeshan
, zeeshan genx...@gmail.com wrote: can anyone help? On Apr 15, 10:28 am, zeeshan genx...@gmail.com wrote: Hi Android Experts, i am wondering if we can change orientation just by sensing the layout position, port or land;without flip like iphone does any example would be appreciated

[android-developers] how can i store each user in array for auto complete next time?

2009-04-20 Thread zeeshan
Hi Experts, i have a shared prefrences which stores the user each time it login, i simply replace the existing user in shared prefrences when 2nd user login. here is a peace of my code : int mode = Activity.MODE_PRIVATE; SharedPreferences mySharedPreferences =

[android-developers] how to check resolution of a Image

2009-04-23 Thread zeeshan
Hi Experts, i am having a problem when i select a very large image for the code below: Uri image= Uri.parse(imageFile); imageicon.setImageURI(image); in my application, user selects an image from sd card or capture it. please advise me how can i check the resolution of the selected image

[android-developers] VM won't let us allocate 6291456 bytes

2009-04-23 Thread zeeshan
Hi Experts, i captured an image by android G1, now trying to display it as ImageView but it gives me memory allocation exception. Uri image= Uri.parse(imageFile); imageicon.setImageURI(image); / ImageView android:id=@+id/imageicon

[android-developers] Location is null

2009-01-30 Thread zeeshan
(LocationManager.GPS_PROVIDER); emulator shows alert force close - wait please help me how can i fix this problem and also how can i debug line by line, at the moment i am usinng if, else to see veriable value. Thanks, Zeeshan --~--~-~--~~~---~--~~ You received

[android-developers] getAssets().open(file.txt)

2009-02-19 Thread zeeshan
i am trying to access a resource file by try { InputStream is = getAssets().open(read_asset.txt); int size = is.available(); byte[] buffer = new byte[size]; is.read(buffer); is.close(); // Convert the buffer into a

[android-developers] Re: getAssets().open(file.txt)

2009-02-19 Thread zeeshan
;         }         finally         {             closeStream(in);         }     } Al. On Feb 19, 10:31 am, zeeshan genx...@gmail.com wrote: i am trying to access a resource file by try {             InputStream is = getAssets().open(read_asset.txt);            int size = is.available

[android-developers] Re: getAssets().open(file.txt)

2009-02-19 Thread zeeshan
well, i did a very stupid mistake. i put wrong file name;lol thanks for your time On Feb 19, 1:20 pm, Naina K kna...@gmail.com wrote: Hi zeeshan , As you said you have changed only the text file. I assume that you have added your new file in assets folder. I am not sure if you have added

[android-developers] ArrayAdapter of widgets (button and EditText)

2009-02-20 Thread zeeshan
Hi, i have wraped ArrayAdapter of a a single editText in a ListView (notepad example) ListView MsgListView = (ListView)findViewById(R.id.MsgListView); Button addimage = (Button) findViewById(R.id.addimage); final EditText EditMsgText = (EditText)findViewById(R.id.EditMsgText); final

[android-developers] URLConnection.getOutputStream() working fine in java main but not in android activity (Urgent plz)

2009-02-25 Thread zeeshan
URLConnection conn = url.openConnection(); in debug stack the value of conn is like this debug stack:--- when i click on conn, it shows me this value org.apache.harmony.luni.internal.net.www.protocol.http.HttpURLConnection:http://

[android-developers] Re: URLConnection.getOutputStream() working fine in java main but not in android activity (Urgent plz)

2009-02-26 Thread zeeshan
yes solved! it was a very simple solution uses-permission android:name=android.permission.INTERNET / lol zeeshan wrote: URLConnection conn = url.openConnection(); in debug stack the value of conn is like this debug stack:--- when i click on conn

[android-developers] please help me in startActivityForResult

2009-02-26 Thread zeeshan
Hi , i have a ImageView layout where one image need to be displayed on user selection. if i click on image, it start a new activity for image selection and display that image on the previous activity image layout. - Activity 1: ImageView Image;

[android-developers] adb push (Read only file system)

2009-03-02 Thread zeeshan
Hi , i need to push some images in sdcard for testing. when i use this command adb push abc.jpg sdcard.iso it says read only file system. if i write any wrong sdcard name even then same output. please help me out thanks --~--~-~--~~~---~--~~ You received this

[android-developers] Re: adb push (Read only file system)

2009-03-02 Thread zeeshan
-sdcard sdcard.iso but it says no such file like sdcard.iso same command is working fine in cmd. sdcard.iso is in tools which i already added in classpath On Mar 2, 1:43 pm, Mark Murphy mmur...@commonsware.com wrote: zeeshan wrote: i need to push some images in sdcard for testing. when i

[android-developers] Re: adb push (Read only file system)

2009-03-02 Thread zeeshan
well, sdcard.iso should be in eclipse directory, argument is working now On Mar 2, 3:17 pm, zeeshan genx...@gmail.com wrote: yes adb push abc.jpg sdcard.iso , replaced to, adb push abc.jpg sdcard (i was using sdcard.iso before, just removed iso extention and it works fine) thanks

[android-developers] Re: crash in com.android.camera after calling Images.Media.insertImage

2009-03-02 Thread zeeshan
Hi, i am having similar problem, i am getting FileNotFoundException when run this command. FileInputStream fileToRead = new FileInputStream(fileName); here fileName is a string content://media/external/images/media/6 by android.provider.MediaStore.Images.Media.INTERNAL_CONTENT_URI image

[android-developers] Re: poblem in reading file of android.provider.MediaStore.Images.Media.INTERNAL_CONTENT_URI

2009-03-03 Thread zeeshan
Nelissen marc...@android.com wrote: See my answer in the other thread in which you posted your question. On Mon, Mar 2, 2009 at 7:46 AM, zeeshan genx...@gmail.com wrote: Hi, i got FileNotFoundException when run this FileInputStream fileToRead = new FileInputStream(fileName); here

[android-developers] what is the recording format of Intent .RECORD_SOUND_ACTION?

2009-03-04 Thread zeeshan
Hi, can anyone tell me what is the default format of android recording. i have recorded an audio clip but dont know how can i check its extention? i am using this activity Intent intent = new Intent (MediaStore.Audio.Media.RECORD_SOUND_ACTION); startActivityForResult(intent,

[android-developers] Re: what is the recording format of Intent .RECORD_SOUND_ACTION?

2009-03-05 Thread zeeshan
). On Mar 4, 1:18 pm, zeeshan genx...@gmail.com wrote: Hi, can anyone tell me what is the default format of android recording. i have recorded an audio clip but dont know how can i check its extention? i am using this activity Intent intent = new Intent

[android-developers] can't read mp3 file from sdcard

2009-03-05 Thread zeeshan
Hi Mates, i am trying to write mp3 file in OutputStreamWriter. here is the code: String fileName=/sdcard/test_cbr.mp3; byte [] buffer = new byte[1024*4]; int bytesRead = 0; FileInputStream is = new FileInputStream(fileName); // everything fine untill here while( (bytesRead =

[android-developers] Re: can't read mp3 file from sdcard

2009-03-05 Thread zeeshan
its working now! actually it was read permission problem. On Mar 5, 9:53 am, zeeshan genx...@gmail.com wrote: Hi Mates, i am trying to write mp3 file in OutputStreamWriter. here is the code: String fileName=/sdcard/test_cbr.mp3; byte [] buffer = new byte[1024*4]; int bytesRead = 0

[android-developers] can't view pictures (camera Unhandled exception )

2009-03-05 Thread zeeshan
Hi, i am having the camera unhandled exception (stoped unexpectedly) when i try to view any image in the Pictures directory. i actually want to use crop funtion like Intent i = new Intent(com.android.camera.action.CROP); i.setClassName(com.android.camera,com.android.camera.CropImage); which is

[android-developers] Re: How to see image and media files in SDCard from emulator

2009-03-06 Thread zeeshan
make sure you are running your emulator in sdcard mode. emulator -sdcard [sdcard link] On Mar 6, 9:17 am, Nithin nithin.war...@gmail.com wrote: Hi , When we insert images or media files to sdcard, how we can see this in emulator, means in which folder, i inserted some images and checked in

[android-developers] why i see more than 1 application icons of my installed application

2009-03-06 Thread zeeshan
Hi , i am trying to run Android application directly from eclipse to on my G1 device, its runs fine but it shows application icon for each activity. i need only one application icon in my installed application lists. any solution? --~--~-~--~~~---~--~~ You

[android-developers] android session veriable

2009-03-09 Thread zeeshan
Hi, i need to store my usr and pass into user session so my activity at N level can access it for athentication. i tried PutExtra but dont think its a good idea to get values and then put again in every activity. any better solution ? --~--~-~--~~~---~--~~ You

[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: 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] 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] 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] 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] 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] 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] 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: 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] 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] 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] 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] 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: 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] 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: 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] 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] why my 2nd App replaces the first one?

2009-07-31 Thread zeeshan
Hi Dear, i need a separate application when i run my eclipse project again. i have changed the application icon and name on 2nd run but this replaced the first application already installed on my android G1. please advise what i need to change on 2nd run to have a separate application rather

[android-developers] Re: why my 2nd App replaces the first one?

2009-07-31 Thread zeeshan
ok so i need to create a separate project with a different package name for the new app? actually i have a framework whcih loads some images from my assets. for a new app i just changed these assets images. On Jul 31, 4:12 pm, Mark Murphy mmur...@commonsware.com wrote: zeeshan wrote: Hi

[android-developers] how to access several xml views in my activity?

2009-08-06 Thread zeeshan
Hi Dear, i have created some xml layout: 1- toplayout.xml 2- botlayout.cml 3- middlelayout.xml now i can only set one view as in setContentView(R.layout.toplayout); please advise how can i show all three views in my activity? --~--~-~--~~~---~--~~ You received

[android-developers] book page flip transition

2009-08-11 Thread zeeshan
Hi Experts, i am trying to have a nextpage transition like book page. at the moment i just change the image on imageview and move from left to right but this doesn't look good. i believe book page transition is available in iphone but i doesn't seem to have any single example for android. 3d

[android-developers] Re: book page flip transition

2009-08-11 Thread zeeshan
can anybody help me? On Aug 11, 11:14 am, zeeshan genx...@gmail.com wrote: Hi Experts, i am trying to have a nextpage transition like book page. at the moment i just change the image on imageview and move from left to right but this doesn't look good. i believe book page transition

[android-developers] how to avoid restarting activity on keyboard flip change

2009-08-11 Thread zeeshan
Hi Dear, when i open my keyboard, it restarts the activity. i use only landscape mode and dont want the activity to restart. any help plz --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Re: how to avoid restarting activity on keyboard flip change

2009-08-11 Thread zeeshan
i just added this line in manifest and it solved my problem android:configChanges=orientation|keyboardHidden On Aug 11, 4:32 pm, zeeshan genx...@gmail.com wrote: Hi Dear, when i open my keyboard, it restarts the activity. i use only landscape mode and dont want the activity to restart

[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

[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] 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] 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

  1   2   3   >