[android-developers] Android Device Admin App

2016-06-03 Thread vipin singhal
I am trying to create an android device admin app. My requirements are that 
the user should not be able to turn off the mobile network data and the GPS 
settings.
So far, using the android documentation and some resources, I have been 
able to create an app that will allow me to put restrictions on camera, 
implement passcode policies and some more stuff.

But I haven't been able to restrict the user from changing the GPS and 
mobile data settings. I read on various links that this thing was possible 
using the Android NetworkConnectionManager class but that method doesn't 
work in newer versions of android.

Can someone guide me on how to achieve this ?


Thanks !

-- 
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, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/b21a66f0-0b2a-4111-80bc-a12b9f254bd5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Android Ble With Advertising

2016-02-21 Thread vipin . gupta
I am working on BLE and get stuck in finding weather android device can 
transmit and receive data over BLE at the same time with multiple 
devices.If it is possible , please provide me the link where I can find 
these type of stuffs to develop app

-- 
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, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/704f250d-e176-4912-8768-8b0e560e0279%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers]

2014-02-17 Thread vipin sahu
Hello Guys I have uploaded this app to Play Store . It is not visible to
many device for more or less some reason I am not able to figure it out .
Also I have to add functionality of image color palette  , any suggestion
will be appreciated .
Here is the URL
https://play.google.com/store/apps/details?id=com.beta.colorselector


-- 


Thanks and Regards
Vipin Sahu

-- 
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 more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
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, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[android-developers] Nesting Scrolling Android Touch

2012-09-04 Thread Vipin S



Dear Developer 

I am making and test preparation android apps and the following image would 
be mine dashboard , 

I am facing some difficulty while implementing the functionality .I can 
 implement any view that fulfill my requisite ie, the view should be 
vertically scroll-able and the item that are like practice ,mocktest ,study 
and notes are horizontally scroll-able , How ever this is not possible in 
android a nesting a scrolling is not recommended . I have implement by 
creating a parent view  as Scrollview and overriding the 
onIterceptTouchEvent () method to return false when scroll in X direction 
.the I have added view to it which are Horizontal view .

by doing this I implemented the look and feel functionality like the 
ScrollView Scroll when moves in Y  direction and horizontal View Moves when 
scroll in X direction .


https://lh3.googleusercontent.com/-a1oqz6SKc8w/UEWyvJBNO_I/ALo/EdHNAbfdFmo/s1600/Dashboard.png



Now the problem arise that how do I gonna catch the Touch event for any 
view when the deviation in scrolling is min. i,e when I touch a view ,,, ie 
notes the Notes Activity should open ,, but when ever i touch the event are 
passed to parent Scrolling View and it then check that it not Scrolling in 
Y direction then it return false;but how do I handle touch event for item 
click on Horizontal View.(when the touch event occur not the Move , but the 
gesture detector always have two motion event point .as we dont pin top to 
single point )

-- 
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 more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] versioning error in Android 2.0

2012-08-06 Thread VIPIN
Hello All,
I am new  in Android 
I have develop a app in android api level 8( version 2.2). And it is 
working fine. But when i run this program in Lower version , then it work 
fine with API level 6  7. But it gives error in API level 5. It shows 
error :

 ERROR/AndroidRuntime(287): Uncaught handler: thread main exiting due to 
uncaught exception

 ERROR/AndroidRuntime(287): java.lang.RuntimeException: Unable to start 
activity ComponentInfo{com.tech.gift/com.tech.gift.HomeLayoutActivity}: 
android.view.InflateException: Binary XML file line #24: Error inflating 
class android.widget.FrameLayout
 

I have check all xml file as well as activity files. but there is not any 
problam.

Plz suggest we what i do to rum my App on API level 5 of Android.

-- 
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 more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Importing csv file into SQLite Android

2012-04-26 Thread vipin sahu
I have a csv file exported from Sqlite browser that contain a table
and i have placed it in sdcard . i wish i could import into my android
apps data base programmatically I tried a lot but failed to achieve
any help would be appreciated . I have the same tabe created in
android but I dont want to do by reading line by line content from csv
file and execute every time query to insert ... so main point is to
import it directly i dont want to read line by line and insert one by
one

-- 
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 more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] need source code

2011-08-04 Thread vipin saroha
hiii everybody

can anybody tell me how to download source code files of a free
android app.
plz send me the links...
plz reply

thank you
vipin

-- 
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 more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: how to start

2011-08-01 Thread vipin saroha


hii rambabu

thanx for the help dude..
u suggest me that book of RITO MEIER.
actually icould not find it in the market as well on the internet
where i can download it
could u plz send me the link of pdf of that book if u know.

 vipin

-- 
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 more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] how to start

2011-07-25 Thread vipin saroha
hii everybody,
I am new for ANDROID. the only thing i know is JAVA.
can anybody tell me how to begin with ANDROID, I want to create an
application on ANDROID.
please suggest some ideas regarding the types of apps i can go for and
some topics on which i can create an app

thank you
vipin

-- 
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 more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Real Device in market with google Android

2008-04-02 Thread Vipin Kumar
Hi Guys,

Is this news true or an April fool joke?

http://blog.tmcnet.com/blog/tom-keating/google/d2-technologies-releases-mobile-handset-solution-powered-by-google-and.asp
http://www.d2tech.com/
http://www.d2tech.com/4-news/2008/08-04-01a.htm

Best Regards
Vipin

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---