[android-developers] Multiple viewpagers in one fragment

2015-12-19 Thread Nenad Ravic
Idea is when user cliks on one of three pictures, in fragment should be shown viewpager, every picture have her own viewpager. Pictures and fragment(viewpagers) should be in one activity. I true every solution I found on internet but nothing helps me. I would be thankful if someone could helps

[android-developers] Re: Android navigation drawer custom design

2015-12-19 Thread naman khator
I don't want the native layout. I know how to create a basic one. I actually want to create this: https://dribbble.com/shots/1535815-iShop-Menu-Slide On Saturday, December 19, 2015 at 10:05:34 AM UTC+5:30, niks wrote: > > go here to this person's videos: >

[android-developers] Re: Layout structure to display button over camera preview (like in stock camera app)

2015-12-19 Thread David Karr
On Friday, December 18, 2015 at 10:52:43 PM UTC-8, gjs wrote: > > Hi, > > Try a FrameLayout - > http://developer.android.com/reference/android/widget/FrameLayout.html > Ok, that's working pretty well. One problem, however. How do I mask multiple "gravity" constants in the component? I

[android-developers] Best way to determine output file path at time of stopping media recording?

2015-12-19 Thread David Karr
When I start to record a video, I have to call "mediaRecorder.setOutputFile(filepath)". When I later stop recording, I can report that the video is recorded, but it would be nice to know at the point of stopping the recording what the output file path was. As I have the "mediaRecorder" there,

[android-developers] How to store videos with similar naming scheme as stock camera, but in custom camera app

2015-12-19 Thread David Karr
Because I can't bring up the stock camera app with just a video record/stop button (I'm using a remote bluetooth button to start/stop recording), I've written a custom app that just displays the camera preview and a video record/stop button. Despite the fact that this is a custom app, as much

[android-developers] Re: alpha testing in-app billing, error "This version of the application is not configured for billing..."

2015-12-19 Thread julian
Hei, I've worked out a theory that seems to hold up. 1/ Starting with the assumption "Perhaps the error is actually meaningful" I got some logs to prove Google Play Services generates the fault. Which it appears to do. 2/ Then I worked on the assumption I do not see the opt-in promised

[android-developers] Re: How do it Display Bitmaps frames per seconds in an ImageView efficiently ?

2015-12-19 Thread fah127
Hi, gjs. I tested with this way, but the app always has performance issues to use of the bitmap by long time. I am looking the way where I improve the performance the app. El sábado, 19 de diciembre de 2015, 1:45:22 (UTC-5), gjs escribió: > > Hi, > > Why not just - > > @Override > public void

[android-developers] Re: How to store videos with similar naming scheme as stock camera, but in custom camera app

2015-12-19 Thread gjs
Hi, See http://developer.android.com/reference/android/os/Environment.html it has methods to retrieve default paths of where photo, video files etc are stored. The file naming convention should be easy enough to mimic, usually being based on date time stamps. Regards On Sunday, December 20,

[android-developers] adb dont work anymore after update

2015-12-19 Thread Rolf Pfister
After the automatic update in android-studio adb dont work anymore. I also tried to start adb manually: ~/Android/Sdk/platform-tools$ ./adb bash: ./adb: Kann die Binärdatei nicht ausführen: Fehler im Format der Programmdatei Is it possible somehow to reinstall adb without needing to make a new

[android-developers] Android camera flash

2015-12-19 Thread Prahathess Raghavan
How fast can the android flash blink a general idea apart from the hardware. Just got curious generating a strobe effect. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it,

[android-developers] Context Switch in ART

2015-12-19 Thread 王帅
Dear Friends, Is there someone familiar with the context switch between interpreted code and compiled code in ART? Specifically,I would like to know the difference between shadow frame and quick frame used ? Could you help me?Thanks a lot. Best wishes, Shuai -- You received this

[android-developers] Re: InAppPurchase: Consumption Request to Google Play

2015-12-19 Thread julian
Hei, I assume you will use IABv3. Early in your code, in a billing activity, you will create a android.vending.billing.helper.IabHelper: public abstract class PurchaseActivity extends AppCompatActivity implements OnIabSetupFinishedListener, OnIabPurchaseFinishedListener,

[android-developers] webm video support on webview

2015-12-19 Thread developer . xeye
I'm able to load and play 3gp and mp4 video on my webview in my application, but i'm not able to play webm video. what is the solution to this? webm video is working fine in my web browser. -- You received this message because you are subscribed to the Google Groups "Android Developers"

[android-developers] A question about geofence

2015-12-19 Thread Tejas Nandanikar
I had a question regarding Geofence. Suppose I create a Geofence which triggers an Intent service when the device is inside the created geofence. My question is- Will the Intent service be started when the device is inside geofence even if the user kills the application? -- You received this

[android-developers] FusedLocationApi does not update location with out interent

2015-12-19 Thread Adam Ratana
I have seen this too, and I think this may be a bug, as when the app has never connected to google play services it appears that the fused location api client will not work. So as another poster said, falling back to the older AOSP based location manager is a way to get the user's location