本文整理汇总了Java中org.telegram.ui.Components.IdenticonDrawable类的典型用法代码示例。如果您正苦于以下问题:Java IdenticonDrawable类的具体用法?Java IdenticonDrawable怎么用?Java IdenticonDrawable使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
IdenticonDrawable类属于org.telegram.ui.Components包,在下文中一共展示了IdenticonDrawable类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: updateKeyView
import org.telegram.ui.Components.IdenticonDrawable; //导入依赖的package包/类
private void updateKeyView() {
if(VoIPService.getSharedInstance()==null)
return;
IdenticonDrawable img = new IdenticonDrawable();
img.setColors(new int[]{0x00FFFFFF, 0xFFFFFFFF, 0x99FFFFFF, 0x33FFFFFF});
TLRPC.EncryptedChat encryptedChat = new TLRPC.TL_encryptedChat();
try {
ByteArrayOutputStream buf = new ByteArrayOutputStream();
buf.write(VoIPService.getSharedInstance().getEncryptionKey());
buf.write(VoIPService.getSharedInstance().getGA());
encryptedChat.auth_key = buf.toByteArray();
}catch(Exception checkedExceptionsAreBad){}
byte[] sha256 = Utilities.computeSHA256(encryptedChat.auth_key, 0, encryptedChat.auth_key.length);
String[] emoji=EncryptionKeyEmojifier.emojifyForCall(sha256);
//keyEmojiText.setText(Emoji.replaceEmoji(TextUtils.join(" ", emoji), keyEmojiText.getPaint().getFontMetricsInt(), AndroidUtilities.dp(32), false));
for(int i=0;i<4;i++) {
Drawable drawable = Emoji.getEmojiDrawable(emoji[i]);
if (drawable != null) {
drawable.setBounds(0, 0, AndroidUtilities.dp(22), AndroidUtilities.dp(22));
keyEmojiViews[i].setImageDrawable(drawable);
}
}
}