[android-developers] Hot Requirement :: Software Engineer(Java Developer With AWS) :: Baltimore, MD (Need Locals)

2018-04-11 Thread abhi . softions
Hi Greetings, This is Abhi From Softion inc ,I am a Sr. Recruiter Here I have job opportunity for you below is the job description mentioned go through it and if it’s matches your skill and you are looking for change or available in the market do attach your updated resume and let me know

[android-developers] Coding design pattern consideration

2016-09-08 Thread Abhi
How should we design our code base for Android Apps: 1. Should we follow traditional web style with proper abstract classes, interfaces, different design patterns? 2. Or Should we try to avoid these as much as possible to get a minimal, maintainable code for better performance? --

[android-developers] Offline Advertisement - Article

2016-08-16 Thread Abhi
Hi friends, I have written an article about Offline advertisement and love to share with you. Offline Advertisement Would love to hear some constructive feedback from all of you :) Thanks Abhinav Tyagi -- You received this

[android-developers] Receive Callback from Service

2015-04-17 Thread abhi
Is there any mechanism to receive a callback from service through AIDL without any client intervention.Already i have implemented a two way communication through AIDL, but still i couldnt figure out how to sent a callback without a client call.Any insights into this will be very helpfull. -- Y

[android-developers] How to access Camera stream inside Webview

2015-01-29 Thread Abhi
Can someone help me here ?? -- 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.c

[android-developers] How to access Camera stream inside Webview

2015-01-27 Thread Abhi
I want to access phone camera stream inside webview. I have HTML pages which are working absolutely fine on Chrome for android I want the same features inside webview now. Right now I see dark thumbnail only and no camera permission alert is getting invoked. On browser as soon as I open the page

[android-developers] Re: display PNG images as icons

2014-06-20 Thread abhi
probably you can do it in Photoshop or Gimp tool itself, as you might only want to remove the white background On Friday, June 20, 2014 9:34:07 AM UTC+5:30, prudhvi wrote: > > Hi Guys , > > > > > > I am using grid view layout for home page display . For this , I intend > to display an icon

[android-developers] In app billing and trial query.

2013-06-13 Thread Abhi
Hi, I am building an application which I wish to upload to the app store as a paid app. But i would like to post it as a trial app for a set amount of time. I looked at all the options in the app billing version 3. I have found a few problems. 1. If I create my app with a non-consumable inapp

[android-developers] How to extend the preview layout in Google camera to enable the control panel to look transparent in android 4.0

2013-03-12 Thread Abhi
in the right direction. It would be great if someone could let me know if my assumption is the right one? Or is there an easier way of doing this? Thanks, Abhi -- -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this g

[android-developers] Android Game : Pause Resume Issue

2012-10-05 Thread Abhi
Hi, I am coding for my first game. I am facing problem while pausing my game and resuming it. I have posted for this issue on StackOveflow but I am unable to find the root cause of my issue. Issue I face is, when

[android-developers] Where to start for developing an Android Game?

2012-09-09 Thread Abhi
Hi, I am new to game development. Where can I start, for developing a simple Android Game ? -- 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 g

Re: [android-developers] Database getting blank in android

2012-08-10 Thread Abhi
on my activities > > @Override > protected void onDestroy() { > super.onDestroy(); > dao.cleanup(); > } > > public void cleanup() { >if (this.db != null) { >this.db.close(); >this.db = null; >} > } > > I

[android-developers] Database getting blank in android

2012-08-08 Thread Abhi
Hello, I am developing an app. It is working fine but if i left the app open for few hours the database gets blank sometimes(1 out of 5). I tried hard to track the issue but couldn't found any. I am using Sqlite database. Please help me as soon as possible. Thanks Abhi -- You received

[android-developers] Re: how to deflate/hide(invisible) ViewStub from Menu (onOptionsItemSelected)?

2011-11-04 Thread Abhi
e? Thanks, Abhi On Nov 4, 6:16 pm, Kostya Vasilyev wrote: > Inflating a view stub has two important properties: > > 1) It's irreversible: once inflated, the stub's content is always there > 2) The stub's content replaces the stub. > > Sounds like you ne

[android-developers] how to deflate/hide(invisible) ViewStub from Menu (onOptionsItemSelected)?

2011-11-04 Thread Abhi
I keep getting NullPointerException trying to deflate or make invisible the ViewStub from my UI. I just wanted to be sure I am doing it right. I am inflating my ViewStub in onItemLongClick method of GalleryView by doing the following: @Override public boolean onItemLongClick(AdapterVi

[android-developers] Re: display images in galleryview from sqlite database

2011-10-12 Thread Abhi
anyone with an idea how to do this? On Oct 11, 2:09 pm, Abhi wrote: > Hi > > I have asqlitedatabase that has over 2000 low res thumbnails of > pictures. The database itself is over 100MB in size. The project > requires me to have the photos residing in the database instead of

[android-developers] display images in galleryview from sqlite database

2011-10-11 Thread Abhi
Hi I have a sqlite database that has over 2000 low res thumbnails of pictures. The database itself is over 100MB in size. The project requires me to have the photos residing in the database instead of the file path. This is what I would like to do and need help with as this is my first time dealin

[android-developers] Curved Gallery view

2011-09-21 Thread Abhi
Hi all, I would like to know if it is possible to create a curved gallery view from the default horizontal one that Android offers? I don't know if that entails changing the Gallery code in Android framework which I want to avoid. Is there any other way to make a custom Gallery view from scratch?

[android-developers] Gallery View and SQLite database

2011-09-13 Thread Abhi
Hi all, I have a sqlite database of 100+ low res images saved as Blob data. I am creating an App that has a GalleryView and I would like to display the 100+ images from my database in this view. The user can scroll through the horizontally scrolling list and select the one he wants to see full scr

[android-developers] NullPointerException on displaying ImageView of a bitmap

2011-08-25 Thread Abhi
Hi I have the following piece of code which is resulting in a NullPointerException and I am not able to understand why. I am able to get the correct size of the bitmap in the Log statement below before displaying the image, so up to that point everything is good. //result is a byte array which co

[android-developers] Re: how to retrieve images from a sql database?

2011-08-24 Thread Abhi
The field type for image column is BLOB. And I have no idea what that means. I am trying to figure out a way to retreive BLOB data into my Android application and display it on the screen. On Aug 23, 9:39 pm, lbendlin wrote: > so you have an existing database. Can you look at the relevant table w

[android-developers] Re: how to retrieve images from a sql database?

2011-08-23 Thread Abhi
> options.inJustDecodeBounds = false; > > Bitmap preview = > BitmapFactory.decodeStream(getContentResolver().openInputStream(imagePath), > null,options); > > Hope this helps. > > On Aug 22, 3:04 pm, Abhi wrote: > > > > > > > > > Hi > > >

[android-developers] Re: how to retrieve images from a sql database?

2011-08-22 Thread Abhi
Well, that's an option I don't have at the moment. I have a pre- existing sql database that has to go into the application. On Aug 22, 4:09 pm, lbendlin wrote: > generally with mobile databases like SQLite it may be easier to keep the > images in the RAW resource folder and only maintain the (str

[android-developers] how to retrieve images from a sql database?

2011-08-22 Thread Abhi
Hi I have a database of low res images that I am trying to use for one of my applications. What I would like to do is to retrieve the images one by one and display them in a slideshow. I was told that images are stored as byte arrays in sql database. I am new to sql and looking for some direction

[android-developers] regarding image slicing problem

2011-04-06 Thread abhi
Hi .. i am able to run Monkey runner..below are the steps i used to run : Steps to run Monkey Runner : 1 ) Check availablity of Monkey runner tool in Sdk tools folder 2 ) Install jython ( java + python ) 3 ) write the jython Script and placed it in a Specified Folder For example : help.p

[android-developers] '-1' error during HTTPS communication.

2011-04-01 Thread ABhi
Hi All, Below is my problem scenario. - My Server is on running on https. - Doing connection with ‘HttpURLConnection’ api & already tried ‘HttpClient’ as well earlier but both are showing same issue. - Server certificate is ‘Verisign Class 3’ certificate. - Every alternate request sent to

[android-developers] Re: Maps not working in the android emulator

2011-02-25 Thread abhi
Create a new AVD targetted for Google Api Addon.check permissions also. Hope this will work. On Feb 24, 3:32 pm, Rajkumar BE wrote: > Hello, >  I am trying the Google maps API example, but when I run the code > emulator gives the error "The Application has stopped unexpectedly". I > have put

[android-developers] unable to write to sdcard and the permission is not set

2010-12-28 Thread Abhi Rao
Android 2.2 using the emulator I am unable to read and write sdcard When I do ls -l after adb shell - this is what I see # ls -l ls -l drwxr-xr-x root system2010-12-27 05:24 asec drwx-- root root 2010-12-27 05:24 secure d- system system201

[android-developers] turning on Camera Flash

2010-11-09 Thread Abhi
Hi, Is there a way by which I can control the camera flash at the back of the phone? I want it to be on for a certain period of time during my app. Thanks, Abhi -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this g

[android-developers] Re: refresh gallery after saving photo in android

2010-11-05 Thread Abhi
HI Kostya, No. I guess I don't know how to use MediaScannerConnection to do what I am trying to do. Is there an example that you can point me to for my better understanding? That will be helpful. THanks Abhi On Nov 4, 4:21 pm, Kostya Vasilyev wrote: > Have you actually trie

[android-developers] Re: refresh gallery after saving photo in android

2010-11-04 Thread Abhi
HI guys, I am coming back to this topic after unsuccessfully looking out for a solution myself. Does anyone have a clue yet? THanks, SHarma On Sep 20, 10:58 am, Kostya Vasilyev wrote: > http://developer.android.com/reference/android/media/MediaScannerConn... > > 20.09.2010 18:41, A

[android-developers] Re: refresh gallery after saving photo in android

2010-09-20 Thread Abhi
I am looking for the same answer. On Aug 29, 2:26 pm, Patrick wrote: > I wanted to bring up this querstion again, since I stumble upon the > same problem but still haven't found a solution. > > Does anyone know how to programmaticallyrefreshagalleryafter > storing a photo? > > On Jul 1, 2:45 am,

[android-developers] Re: How to programatically refresh Gallery View?

2010-09-20 Thread Abhi
Is there anyone who can help me on this? On Sep 17, 10:20 am, Abhi wrote: > I want to programatically refresh Gallery every time I download a > video from my application. It doesn't automatically show up in the > gallery. > > Thanks, > > AB -- You received th

[android-developers] How to programatically refresh Gallery View?

2010-09-17 Thread Abhi
I want to programatically refresh Gallery every time I download a video from my application. It doesn't automatically show up in the gallery. Thanks, AB -- 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] Refresh Gallery Thumbnail view

2010-09-16 Thread Abhi
HI I have a video recorder app. After I shoot a video, it doesn't automatically show up on the Android Gallery. How can I programatically refresh the Android Gallery right after a new video is shot using my app? Thanks, AB -- You received this message because you are subscribed to the Google G

[android-developers] Re: Button State does not toggle automatically!! Help!

2010-08-26 Thread Abhi
t; possible.button.setFocusable(),button.requestFocus(),button.bringToFront() > and so on. But none of > them seem to work. > > Is there any way I can make it toggle programatically and without user > intervention through touch? or is it impossible to do it with the > VideoView? >

[android-developers] Re: Button State does not toggle automatically!! Help!

2010-08-23 Thread Abhi
I am calling setEnabled from the UI thread... still the same thing. On Aug 23, 9:09 am, Kostya Vasilyev wrote: > Make sure you're caliling setEnabled from the UI thread. > > -- > Kostya Vasilyev --http://kmansoft.wordpress.com > > 23.08.2010 16:57 пользователь "A

[android-developers] Re: Button State does not toggle automatically!! Help!

2010-08-23 Thread Abhi
is getting disabled through my program by calling button.setEnabled(false), on the screen, I still see the button as active and only when I touch the screen, the button is seen to be in the inactive state (disabled state with grey color). I hope that solves your confusion? Thanks, Abhi On Aug 2

[android-developers] Button State does not toggle automatically!! Help!

2010-08-22 Thread Abhi
so on. But none of them seem to work. Is there any way I can make it toggle programatically and without user intervention through touch? or is it impossible to do it with the VideoView? Thanks, Abhi -- You received this message because you are subscribed to the Google Groups "Android Develop

[android-developers] Re: Toggle Button state programatically

2010-08-22 Thread Abhi
Any clue on this anyone? On Aug 20, 10:32 am, Abhi wrote: > Hi > > I am trying to toggle button state programatically. I want to go > between setEnabled(False) and setEnabled(True) for a given duration. I > have a timer and I want to toggle between these states at regular time >

[android-developers] Toggle Button state programatically

2010-08-20 Thread Abhi
state to False state, but doesn't go back to True state again unless I touch the button, which is kinda weird. Can someone help me on this? Thanks, Abhi -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group

[android-developers] FATAL EXCEPTION: Timer-0

2010-08-17 Thread Abhi
) 08-17 23:02:11.680: ERROR/AndroidRuntime(2652): at java.util.Timer $TimerImpl.run(Timer.java:289) 08-17 23:02:11.694: WARN/ActivityManager(1726): Force finishing activity com.trial.video/.PlayVideo Thanks, Abhi -- You received this message because you are subscribed to the Google Groups

[android-developers] Drawing an EditText on top of an image

2010-08-13 Thread Abhi
Hi, I am creating a custom view which has an image. The image can be of any type. What i want to achieve is that i want to draw an EditText control on top of the image so that the user can add some values to it. I am not sure how to achieve this. The onDraw control will not allow me to draw any

[android-developers] Re: Droid Froyo manual update

2010-08-12 Thread Abhi
On 12 August 2010 00:09, TreKing wrote: > > > On Wed, Aug 11, 2010 at 5:04 PM, Abhi wrote: > > >> It resets with Froyo and deletes all my data. > > > Seriously? AFAIK, a factory reset should get you back to exactly how you > > originally got your phone for the

[android-developers] Video Player

2010-08-12 Thread Abhi
left off. I want to be able to see through my long video for particular instances that I want to seek directly to. Is it possible using available mediaplayer apis? Abhi -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to t

[android-developers] Re: Droid Froyo manual update

2010-08-11 Thread Abhi
@Adal, that's exactly wat is happening with me when I factory reset it. On Aug 11, 7:29 pm, Adal wrote: > AFAIK factory reset goes to a clean install of your current version. > > > > On Thu, Aug 12, 2010 at 12:09 AM, TreKing wrote: > > On Wed, Aug 11, 2010 at 5:04

[android-developers] Re: Droid Froyo manual update

2010-08-11 Thread Abhi
It resets with Froyo and deletes all my data. On Aug 11, 5:55 pm, TreKing wrote: > On Wed, Aug 11, 2010 at 4:33 PM, Abhi wrote: > > Is there any way I can switch back to the old firmware update of 2.1? > > Factory r

[android-developers] Droid Froyo manual update

2010-08-11 Thread Abhi
Hi guys, I may be posting this question in the wrong forum. But maybe some of you are facing the same problems as me and might be able to help. I did the manual Froyo update on my Moto Droid couple of days ago after following instructions on a reliable forum. However, I have been having problems l

[android-developers] Froyo: files picked have prefix 'mnt' before the actual filename... why?

2010-08-11 Thread Abhi
on as I am further using these filenames for other functions of the app. anyone knows whats going on? Abhi -- 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

[android-developers] Re: Problem using android services

2010-07-07 Thread Abhi
Thanks a lot Mark. I managed to solve the problem based on your pointers. I was doing a global initialization of Application Context using getApplicationContext. Thanks and Regards, Abhijeeth On Jul 7, 5:03 pm, Mark Murphy wrote: > On Wed, Jul 7, 2010 at 1:46 AM, Abhi wrote: > > 07

[android-developers] Re: Problem using android services

2010-07-06 Thread Abhi
. Please help. Thanks and Regards, Abhijeeth On Jul 6, 4:56 pm, Mark Murphy wrote: > On Tue, Jul 6, 2010 at 7:49 AM, Abhi wrote: > >    I am trying to create an application which has a service running > > in the background. But i should also be able to re run the service > > when

[android-developers] Problem using android services

2010-07-06 Thread Abhi
Hi, I am trying to create an application which has a service running in the background. But i should also be able to re run the service when i select option(Here it is a check box) from the fore ground. I am getting Unable to instantiate service error. I have called the service in my main activ

[android-developers] Re: Loading from a compiled xml file

2010-06-30 Thread ABhi
I'm not sure if i understand the question correctly. My need is slightly different for dynamic screen generation. Hi All, I'm dealing with a problem you guys might not have faced earlier. I'm having a use-case in my Android application where the actual screen that i want to show to user is not s

[android-developers] Dynamic loading of complete layout file.

2010-06-30 Thread ABhi
Hi All, I'm dealing with a problem you guys might not have faced earlier. I'm having a use-case in my Android application where the actual screen that i want to show to user is not stored in any layout file of my application. The layout of the of the screen is designed by server in this case, bas

[android-developers] Find the Device Details using an API

2010-06-15 Thread Abhi
Is there an API that i can use to find the device details like model number and Brand name etc? Thanks, Abhi -- 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

[android-developers] automatically turn on application

2010-06-09 Thread Abhi
Can I kick start my application automatically based on accelerometer data from a "no app running" state? For e.g. if the phone is subjected to strong vibrations, the application turns on. In other words, how can I read accelerometer w/o really having an application do it? Thanks, Abh

[android-developers] Re: MediaController in MediaPlayer

2010-06-07 Thread Abhi
Thanks Sean. I will try this out and post my findings. Thanks again Abhi On Jun 7, 10:16 am, Sean Hodges wrote: > Abhi, > > I'm not to sure about video playback outside of the VideoView, I > expect you have some substitute view to replace VideoView, as > MediaPlayer is just

[android-developers] Re: MediaController in MediaPlayer

2010-06-07 Thread Abhi
with VideoView). Abhi On Jun 7, 9:34 am, Sean Hodges wrote: > Hey Abhi, > > Take a look at the VideoDemo class in Mark Murphy's tutorial projects: > > http://github.com/commonsguy/cw-advandroid/blob/master/Media/Video/sr... > > On Mon, Jun 7, 2010 at 2:28 PM, Abhi wr

[android-developers] Re: MediaController in MediaPlayer

2010-06-07 Thread Abhi
guys any lead on this question would help me a bunch... thanks, abhi On Jun 4, 1:05 pm, Abhi wrote: > Hello, > > I am using MediaPlayer to build a Video player for playing local video > files. However, I don't know how to enable MediaController for my > player. I wa

[android-developers] MediaController in MediaPlayer

2010-06-04 Thread Abhi
Hello, I am using MediaPlayer to build a Video player for playing local video files. However, I don't know how to enable MediaController for my player. I want the media control buttons that pop up when you touch the video surface. Can anyone help me out please? Thanks, Abhi -- You rec

[android-developers] OMAP Zoom 2

2010-06-01 Thread Abhi
Is anyone here working on the TI Zoom 2 kit? I am building an application on Zoom 2 and had a couple of questions around it. Abhi -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-

[android-developers] Re: Bulk inserts into ContentProviders

2010-05-28 Thread abhi
Look into ContentProviderOperation On May 26, 10:04 am, Vikram wrote: > I have written a content provider over a database table which > essentially captures phone contacts information. > > So at a point of time, in my application code, I want to query the > android contacts content provider, and

[android-developers] Re: Is it possible to keep an authtoken stored for an Account private?

2010-05-28 Thread abhi
Are you storing the authoken as part of the userData in the Account? If so, anyone can access that. Perhaps you need to find a different method to store your authtoken. You could look at creating your own database using a Cursor or use SharedPreferences. On May 27, 10:38 am, GroundZero wrote: > I

[android-developers] VideoView and MediaPlayer

2010-05-28 Thread Abhi
ve up resources everytime a new instance is called. Any help? Thanks ABhi -- 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 e

[android-developers] Re: Pushing up views above soft keyboard

2010-05-20 Thread abhi
I have tried to use android:windowSoftInputMode="stateUnspecified| adjustResize" in the activity manifest, but that does not work either. On May 20, 10:32 am, abhi wrote: > hi, > > I am trying to push up the views in my activity whenever a soft > keyboard comes up.

[android-developers] Pushing up views above soft keyboard

2010-05-20 Thread abhi
hi, I am trying to push up the views in my activity whenever a soft keyboard comes up. I have been partially successful in this, except that certain views remain hidden behind the soft keyboard. My XML looks like the below. I am specifying the last RelativeLayout RL3 containing buttons with the a

[android-developers] Can't open dex cache '/data/dalvik-cache/sys...@app@myapp....@classes.dex': No such file or directory

2010-05-17 Thread Abhi
ion.newActivity(Instrumentation.java:1097) E/AndroidRuntime( 1159): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java: 2316) E/AndroidRuntime( 1159): ... 11 more Abhi -- You received this message because you are subscribed to the Google Groups "Android Developers&quo

[android-developers] Installing apps on Zoom 2

2010-05-14 Thread Abhi
point me to a user manual for Zoom 2 & Android that will be great too. Thanks, Abhi -- 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 fr

[android-developers] Re: RadioButton setChecked not working on configuration change

2010-05-12 Thread abhi
setting android:saveEnabled="false" for the RadioButton made this problem go away. On May 11, 6:12 pm, abhi wrote: > Hello, I am trying to set a RadioButton as checked/not checked through > code. It is working the first time I set it, but the second time, the > code does not s

[android-developers] RadioButton setChecked not working on configuration change

2010-05-11 Thread abhi
Hello, I am trying to set a RadioButton as checked/not checked through code. It is working the first time I set it, but the second time, the code does not set the button. Here is the relevant part of my code. I have commented on the problematic part. private boolean val; @Override protected

[android-developers] Java Help, Replace first line of text file!

2010-05-10 Thread Abhi
but I am looking for a neat example for any of the above solutions or any other solution. Please help Thanks, Abhi -- 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

[android-developers] Re: Default buffer size used in BufferedReader constructor. It would be better to be explicit if an 8k-char buffer is required!

2010-05-10 Thread Abhi
Al Could you give an example of how to use StringBuilder to replace what I am doing? Thanks, Abhi On May 6, 3:37 pm, Al wrote: > This isn't an error, it's just a message to inform you it is better to > specify the size of thebufferyou need in the constructor. > > Abhi wr

[android-developers] Default buffer size used in BufferedReader constructor. It would be better to be explicit if an 8k-char buffer is required!

2010-05-06 Thread Abhi
nning out of memory bcoz of the buffer size or something but don't know a work around for this. Please help Abhi -- 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] how to measure video file size?

2010-05-05 Thread Abhi
I have a video player application and would like to display an approximate size of the running video. Is there a way to calculate the video file size from the given Video player API set? Thanks, Abhi -- You received this message because you are subscribed to the Google Groups "An

[android-developers] Re: VideoView path problem

2010-05-04 Thread Abhi
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 wrote: > I am using a VideoView to play videos. > it works smoothly. > > wit

[android-developers] Re: Insert animation between video playback?

2010-05-04 Thread Abhi
Anyone? On Apr 27, 9:11 am, Abhi wrote: > Hello > > I am not sure if this makes any sense. But what I really want to do is > to insert some animation snippets (1-2 secs) in between my Video > playback to try and give the users a transitional effect while > watching videos. My q

[android-developers] VideoView transitions during playback

2010-05-03 Thread Abhi
Abhi -- 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 mo

[android-developers] Re: Switching video files dynamically

2010-04-28 Thread Abhi
anyone has any idea? On Apr 27, 10:00 am, Abhi wrote: > HI > > I am trying to switch between two video files dynamically, but as soon > as I set the path for the second video file during playback of the > first, the app either hangs or force closes. This is what I

[android-developers] Switching video files dynamically

2010-04-27 Thread Abhi
Am I missing something? Abhi -- 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...@go

[android-developers] Insert animation between video playback?

2010-04-27 Thread Abhi
eoView.start(); Am I shooting in the dark or is this something I can spend time trying? Thanks, Abhi -- 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 un

[android-developers] Video transition effects during Playback?

2010-04-26 Thread Abhi
Is there an easy way to insert transitional effects during Video playback from the available APIs? Or is this something that would have to be done outside of Android (Native code implementation)? Thanks, Abhi -- You received this message because you are subscribed to the Google Groups "An

[android-developers] Re: preventing orientation change during video playback

2010-04-26 Thread Abhi
Excellent inputs guys... Thanks a ton!! Abhi On Apr 26, 2:51 pm, Prajakta Shitole wrote: > You can also set the screenOrientation to be as "landscape" in your Android > Manifest file for the Activity which has the video player. > > Eg:- > >   android:screenOrienta

[android-developers] preventing orientation change during video playback

2010-04-26 Thread Abhi
hello I am workin on a video player app in which I want only the landscape orientation active coz right now when the user tilts the phone during video runtime, it restarts playback in that orientation. How can I easily avoid this? Thanks, Abhi -- You received this message because you are

[android-developers] Re: problem playing back .mp4

2010-04-23 Thread Abhi
Mark What did you mean when you said the videos would work as long as they are properly hinted? Abhi On Apr 23, 11:35 am, Mark Murphy wrote: > Abhi wrote: > > I see the .mp4 video as having a frame rate of 30fps and resolution > > 640 x 480. Is that an issue? > > I have n

[android-developers] Re: problem playing back .mp4

2010-04-23 Thread Abhi
CK_VIDEO); The only ones that show up are the .3gp video files located on my sdcard. Abhi On Apr 23, 11:24 am, Mark Murphy wrote: > Abhi wrote: > > I am having trouble playing back a .mp4 video. I can only hear audio > > in the background and the phone hangs until the video (or sho

[android-developers] problem playing back .mp4

2010-04-23 Thread Abhi
.mp4 and . 3gp. Thanks, Abhi -- 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-developer

[android-developers] Re: copy file from sdcard to Android package filesystem (/data/data/packagename/files/) ??/

2010-04-14 Thread Abhi
27 am, Mark Murphy wrote: > Abhi wrote: > > Is it possible to copy a file located on the sdcard to a package's > > internal filesytem located at /data/data/packagename/files/ folder? > > Yes, via standard Java I/O. Use getFilesDir() to find out where > /data/data/packagen

[android-developers] copy file from sdcard to Android package filesystem (/data/data/packagename/files/) ??/

2010-04-14 Thread Abhi
Hi Is it possible to copy a file located on the sdcard to a package's internal filesytem located at /data/data/packagename/files/ folder? Thanks, Abhi -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group

[android-developers] Re: Droid Video Recorder

2010-04-05 Thread Abhi
DP, no. I couldn't find anything that would let me record videos at high resolutions. Were you able to figure out? Abhi On Apr 1, 2:24 pm, DP wrote: > Did anyone found a solution to record 720x480 videos yet? > > On Mar 9, 2:39 pm,Abhi wrote: > > > There is a Camc

[android-developers] Re: Layout with ScrollView and TextView

2010-04-02 Thread ABhi
Hi, If i understood your requirement correctly then your problem can be resolved by 'AndroidsFortune' application's source code. The guys has done wonderful job by having both horizontal and vertical scrolling for the TextView. Hope it helps you. Regards, Abhishek On Apr 2, 2:13 am, andrej sark

[android-developers] Re: left scrollbar

2010-03-29 Thread ABhi
Hi Why don't we have any view that supports both horizontal and vertical scrollbar? What am i supposed to do to show an auditorium layout on Android (which enables user to select particular seat on that auditorium? Regards, Abhishek On Mar 29, 4:36 am, Romain Guy wrote: > Yes. > > On Sun, Mar

[android-developers] Adding network presence to ContactsContract

2010-03-26 Thread abhi
Is there a way to add network presence to ContactsContract via a Raw Contacts insert? -- 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, s

[android-developers] Re: how to determine length of a video programmatically?

2010-03-26 Thread Abhi
yes there is nothing wrong with the video path and the video plays fine. thanks On Mar 26, 2:18 pm, Yahel wrote: > Have you checked that your setVideoPath returns a correct video path ? > > Can you see the video when calling the start method ? > > Yahel > > On Mar 26,

[android-developers] Re: getDuration() in VideoView returns -1 !!!

2010-03-26 Thread Abhi
The idea was to post the same question with a relevant subject this time... don't think it should annoy you that much On Mar 26, 2:17 pm, Yahel wrote: > Stop posting twice the same question. Wait for an answer in your > original post. > > Yahel > > On Mar 26, 7:06 pm

[android-developers] getDuration() in VideoView returns -1 !!!

2010-03-26 Thread Abhi
Hi, Has anyone tried using the getDuration() method in VideoView? It returns a -1 for me always. Is there a way around? Thanks, Abhi -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-

[android-developers] Re: how to determine length of a video programmatically?

2010-03-26 Thread Abhi
Hi, Could anyone tell me how to use getDuration() method for VideoView? I tried using getDuration() much after using setVideoPath() but the result is always the same -1. Abhi On Mar 26, 1:19 pm, Abhi wrote: > I am using VideoView and I tried using getDuration() this way > > * defined

[android-developers] Re: how to determine length of a video programmatically?

2010-03-26 Thread Abhi
6, 1:12 pm, Simone Russo wrote: > Try the MediaPlayer.getDuration() method > Simone > > On Fri, Mar 26, 2010 at 5:58 PM, Abhi wrote: > > Is there a way to determine the length of a video before playing it? > > > Thanks, > > > Abi > > > -- > >

[android-developers] how to determine length of a video programmatically?

2010-03-26 Thread Abhi
Is there a way to determine the length of a video before playing it? Thanks, Abi -- 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] Video player

2010-03-25 Thread Abhi
Hi, I want to create a better video picker for my player. What I am doing today is startActivityForResult( new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Video.Media.INTERNAL_CONTENT_URI),PICK_VIDEO); but this brings up a basic list view. What I am trying to get is something with thu

[android-developers] Wireshark not showing HTTP packets for emulator

2010-03-24 Thread abhi
Hi, I'm trying to use wireshark to capture some HTTP packets exchanged between the emulator and a website. However, even though I can see the web content on the emulator browser, wireshark does not display any HTTP packets exchanged between the emulator and the website. Why is this? -- You recei

  1   2   3   >