我怎样才能在Android的设备名称? [英] How can I get the device name in Android?

查看:105
本文介绍了我怎样才能在Android的设备名称?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何获得设备名称编程方式在Android的?

How can I get the device name programmatically in Android?

推荐答案

要显示的设备名称/型号在Android中使用:

To display the device name/model in android use:

TextView tv1 = (TextView) findViewById(R.id.tv1);
String str = android.os.Build.MODEL;
tv1.setText(str);

链接到Android build类

这篇关于我怎样才能在Android的设备名称?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆