Re: [android-developers] Re: how to add URL button

2014-11-01 Thread sree android
try this code public void callWebURL( String urlLink) { Intent urlCalling= new Intent( Intent.ACTION_VIEW , Uri.parse( urlLink) ); startActivity( urlCalling); } On Sat, Nov 1, 2014 at 10:30 AM, Naresh Pedagani nareshpedag...@gmail.com wrote: for this you can use webview,please go

[android-developers] Re: libdrm1.so and libdrm1_jni.so, what are those libs purpose ?

2014-11-01 Thread David Parry
They are used for digital rights management framework libraries used by HAL in android. They should be implementing the industry standard for encryption to video music streams. I do not believe the default media player calls them since it does not play DRM streams. Something like Netflix player

[android-developers] Re: how to add URL button

2014-11-01 Thread Sheharyar Naseer
From what I understand, you want to add a Button that when tapped, would open a specific URL in the browser, right? Place a button in your Layout, give it an ID and in your Java Code, use this: Button button = (Button) findViewById(R.id.button_id); button.setOnClickListener(new

[android-developers] Re: How to develop openvpn.

2014-11-01 Thread Sheharyar Naseer
Hey @sree, Have you tried taking a look at ICS-OpenVPN https://code.google.com/p/ics-openvpn/? Maybe that's what you're looking for. -- 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: Android Wear: Disable wakeup gesture?

2014-11-01 Thread Sheharyar Naseer
Bump for potential -- 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

[android-developers] Re: Is it possible to make an Android device appear as a Bluetooth speaker?

2014-11-01 Thread Sheharyar Naseer
Here are some links that you might find useful: - Bluetooth audio streaming between Android devices http://stackoverflow.com/questions/20159457/bluetooth-audio-streaming-between-android-devices - How to stream audio from PC to Android device over Bluetooth

[android-developers] Android download library does not find the remote expansion/.obb file if it's large

2014-11-01 Thread Mathias Lin
I am implementing an app with an expansion file, and as recommended in the Android Developer docs, I am also doing a manual check when the app starts, whether the expansion file exists, and if not, download it manually via the Download Library, that comes with the Android SDK samples.

[android-developers] Re: Android Studio Editor feature

2014-11-01 Thread Sheharyar Naseer
Hi @Doug, This is an awesome feature and I don't know why you would want to disable that, but if you would still want to, you can do this: 1. Open Android Studio 2. Navigate to *Settings ** Editor ** Code Folding* 3. Uncheck the *Android String References *option If you would like to

[android-developers] Re: Run custom android without rooting device

2014-11-01 Thread Sheharyar Naseer
Hi @pedr0, Yes, this isn't possible without root. You need to unlock your bootloader to be able to install custom ROMs. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to