rfresh Well-Known Member Licensed User Longtime User Mar 25, 2012 #1 Is there a method that returns the name of the device and/or model type? I have a Droid3 and was wondering if I could identify it by name? Thanks...
Is there a method that returns the name of the device and/or model type? I have a Droid3 and was wondering if I could identify it by name? Thanks...
margret Well-Known Member Licensed User Longtime User Mar 25, 2012 #2 I am not at my computer now but use the phone library. I think it is: B4X: Dim p As Phone Mystring = p.Model() Upvote 0
I am not at my computer now but use the phone library. I think it is: B4X: Dim p As Phone Mystring = p.Model()
rfresh Well-Known Member Licensed User Longtime User Mar 25, 2012 #3 That was it...Thank you!!! Upvote 0
Q qsrtech Active Member Licensed User Longtime User Sep 22, 2012 #4 Device Name (computer name) Is there one for getting a computername like windows comps? Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Sep 22, 2012 #5 Does your device store such a name? Do you see it in the settings somewhere? Upvote 0
Q qsrtech Active Member Licensed User Longtime User Sep 23, 2012 #6 Android Comp Name I'm not sure if android devices allow for a "computername" like windows, but I think this should work for me (if every android device provides one): B4X: p.GetSettings("android_id")'p=phone object Upvote 0
Android Comp Name I'm not sure if android devices allow for a "computername" like windows, but I think this should work for me (if every android device provides one): B4X: p.GetSettings("android_id")'p=phone object