[android-developers] Re: Nokia inviting Developers to become an Ovi store publisher.

2010-09-21 Thread SheikhAman
I don't think Nokia is interested in Android. all they want you to come in for is Meego. On Sep 21, 2:25 pm, Kumar Bibek coomar@gmail.com wrote: Definitely a SPAM... On Sep 20, 8:23 pm, TreKing treking...@gmail.com wrote: On Mon, Sep 20, 2010 at 2:27 AM, James Baker

[android-developers] Re: Video Streaming in Android Emulator Possible ?.

2010-09-21 Thread SheikhAman
It is possible to stream videos through media player, but that requires you to have the absolute URI to the video file on the network. when this URI is provided to the player, it streams it, and plays it. however, in the case of You Tube, you don't have the URL pointing directly to a media file.

[android-developers] Re: Video Streaming in Android Emulator Possible ?.

2010-09-21 Thread SheikhAman
and regarding android emulator, If your system specs are quite hi-fi, then the video will be played on emulator, else it will be played on device, as video streaming and playing are memory eating processes. On Sep 21, 1:46 pm, Ajmer singh ajmer.si...@evontech.com wrote: I want to stream a video

[android-developers] Re: How to install the .apk file into blackberry

2010-09-16 Thread SheikhAman
Hahaha.. well, jokes apart, I really think you're on the wrong forum. As far as I know, BlackBerry supports .cod files and it won't understand what an APK file is. secondly, if it the code inside the APK file uses the SDK made for android and BlackBerry won't know anything about it. so it won't

[android-developers] Re: how to drag any particular view

2010-08-05 Thread SheikhAman
You will have to listen for touch event and will have to work on ACTION_DOWN, ACTION_MOVE and ACTION_UP event types. in ACTION_MOVE, you can keep setting co-ordinates of you view according to the changing touch position's co-ordinates. this was concept, for a coding example, check the post at this

[android-developers] Re: Loading random image when activity is brought up...Not working any ideas?

2010-06-25 Thread SheikhAman
If you could send the src project, it would be wonderful. Still, i feel setTag isn't a good option, you should use setImageDrawable with drawable object. I would have used setImageResource(q) to change the image inside the onClick function of the button. for that, the ImageView needs to be

[android-developers] Any alternative of iphone's searchable list in Android?

2010-05-06 Thread SheikhAman
hi. in iPhone, they have got an option of creating such a list which gives them ability to jump to a particular character. see the pic attached http://www.phonemag.com/blog/wp-content/uploads/2008/03/iphone_search_icon.jpg Do we have any such thing in Android? i can setTextFilterEnabled(true)

[android-developers] Refreshing ListView each time the tab get clicked

2010-05-04 Thread SheikhAman
Hi. I am in a situation, where i have four tabs, first of them has some list, and user can select an item from them and it is added to favorites. I am doing it with SharedPreferences. It works fine. But my favorites tab has one List View, which is creating some problems. It access the

[android-developers] VideoView path problem

2010-05-04 Thread SheikhAman
I am using a VideoView to play videos. it works smoothly. with only one problem. i am able to provide path of video with this way- Uri uri = Uri.parse(android.resource://com.abc.def/+ R.raw.vid); video.setVideoURI(uri); video.start(); but this is not what i want. i want it to take the path

[android-developers] Re: VideoView path problem

2010-05-04 Thread SheikhAman
video to another activity this way: Uri data = intent.getData(); if (data != null) { Intent i = new Intent(this, YourVideoPlayer.class); i.setData(data); startActivity(i); } Hope that helps Abhi On May 4, 8:27 am, SheikhAman shekh.a...@gmail.com wrote: I am using aVideoViewto

[android-developers] How to achieve mixed layout with ListView

2010-04-19 Thread SheikhAman
Ohk, Things go fine, and i am able to design a layout like this- ?xml version=1.0 encoding=utf-8? RelativeLayout android:id=@+id/widget101 android:layout_width=fill_parent android:layout_height=fill_parent xmlns:android=http://schemas.android.com/apk/res/android; RelativeLayout

[android-developers] Re: Can i get this layout with List view??

2010-04-19 Thread SheikhAman
is the line where i am setting the listAdapter] On Apr 19, 9:51 pm, ~ TreKing treking...@gmail.com wrote: On Sun, Apr 18, 2010 at 9:35 PM, SheikhAman shekh.a...@gmail.com wrote: Things stay fine until i assign the adapter to the list i have created- as soon as i add the last line, problems

[android-developers] Re: How to achieve mixed layout with ListView

2010-04-19 Thread SheikhAman
trouleshoot more or ask for help with tha ttrace On Mon, Apr 19, 2010 at 11:58 AM, SheikhAman shekh.a...@gmail.com wrote: Ohk, Things go fine, and i am able to design a layout like this- ?xml version=1.0 encoding=utf-8? RelativeLayout android:id=@+id/widget101 android:layout_width

[android-developers] Can i get this layout with List view??

2010-04-18 Thread SheikhAman
Hi. please find the link to attached file, i need to have this kinda layout. is it possible?? well perhaps it is, but im not getting it how to do it. i want to specify the whole layout in the xml, but it gives runtime error here's the link to the blue print of desired layout:

[android-developers] Re: Can i get this layout with List view??

2010-04-18 Thread SheikhAman
Oops! Sorry.. here is the correct one- ?xml version=1.0 encoding=utf-8? LinearLayout xmlns:android=http://schemas.android.com/apk/res/ android android:orientation=vertical android:layout_width=fill_parent android:layout_height=fill_parent RelativeLayout android:id=@+id/widget28

[android-developers] Re: Can i get this layout with List view??

2010-04-18 Thread SheikhAman
ohh, all of the tags didnt have '' with them. I have already added them but they weren't copied dont know why, so thats not a problem. On Apr 19, 6:12 am, SheikhAman shekh.a...@gmail.com wrote: Oops! Sorry.. here is the correct one- ?xml version=1.0 encoding=utf-8? LinearLayout

[android-developers] Re: Can i get this layout with List view??

2010-04-18 Thread SheikhAman
)); } } as soon as i add the last line, problems start. whats wrong? On Apr 19, 6:24 am, SheikhAman shekh.a...@gmail.com wrote: ohh, all of the tags didnt have '' with them. I have already added them but they weren't copied dont know why, so thats not a problem. On Apr 19, 6:12 am, SheikhAman

[android-developers] Re: Question about the Lsit View

2010-04-17 Thread SheikhAman
Google for Droiddraw first. it will give you a nice toll to draw all ur layouts in android. secondly, use an vertical linear layout, in it, add a text view, then add a list view, then add a linear layout, inside linear layout, add button1 and button2. so the text view, list view and linear layout

[android-developers] Re: Some Queries about ListView

2010-03-18 Thread SheikhAman
@gmail.com wrote: Yes, theListViewis fully customisable. Look forsomeexamples on the net. http://tech-droid.blogspot.com/2009/07/custom-listview-for-android.html Thanks and Regards, Kumar Bibek On Mar 16, 2:14 pm, SheikhAman shekh.a...@gmail.com wrote: Hello all. I am very new

[android-developers] Re: Some Queries about ListView

2010-03-18 Thread SheikhAman
I want this thing from my list view- http://lh3.ggpht.com/_o9EYB0b5APY/S6IYbRBvOcI/CoA/Kv94dWitZXY/custom%20listview.PNG On Mar 18, 4:44 pm, Mark Murphy mmur...@commonsware.com wrote: SheikhAman wrote: Well, your example is quite good. but i need to be more aware of android to fully

[android-developers] Re: Some Queries about ListView

2010-03-18 Thread SheikhAman
thanks for the resource. how much the book costs? is it the famous USD$40 subscription every developer keeps talking about?? :-) On Mar 18, 4:44 pm, Mark Murphy mmur...@commonsware.com wrote: SheikhAman wrote: Well, your example is quite good. but i need to be more aware of android to fully

[android-developers] Re: Some Queries about ListView

2010-03-18 Thread SheikhAman
ohh thanks!! What is a warescription? a subscription to an ebook? will it be getting updates? how long this subscription will last for? On Mar 18, 5:23 pm, Mark Murphy mmur...@commonsware.com wrote: SheikhAman wrote: thanks for the resource. how much the book costs? is it the famous USD$40

[android-developers] Some Queries about ListView

2010-03-16 Thread SheikhAman
Hello all. I am very new to Android, but I love it because it has given me back what i was longing for : Java. but I am facing some doubts and confusions about is, since I am totally new to Mobile App Development. :-| I am listing my queries here- 1.) I wish to put various items in a single

[android-developers] Re: Some Queries about ListView

2010-03-16 Thread SheikhAman
, SheikhAman shekh.a...@gmail.com wrote: Hello all. I am very new to Android, but I love it because it has given me back what i was longing for : Java. but I am facing some doubts and confusions about is, since I am totally new to Mobile App Development.  :-| I am listing my queries