Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
300 views
in Technique[技术] by (71.8m points)

udid - Secure Android ID length?

I am using the below code to get the android ID

 String android_id = Secure.getString(context.getContentResolver(),
            Secure.ANDROID_ID);

I am able to get the android ID but it's length is not fixed. In some phones I get a 16 length ID and in other I get 15 length ID.

I read in the documentation it is a 64 Hex decimal number so it should always return 16 digit string.

So is there something wrong I am doing?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

The following code snippet from AOSP shows how the ANDROID_ID is generated:

String androidId = Long.toHexString(new SecureRandom().nextLong());

The method Long.toHexString is known to suppress leading zeros. Therefore prepending the ANDROID_ID with zeros in case it's length is less than 16 should be to correct way to get a full 16 digits ANDROID_ID.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...