Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个转换为字节数组的音频文件。我在 Base64 中转换字节数组。我想将 Base64 值显示到活动屏幕。但我不知道怎么做。我是android新手,非常感谢您的帮助。谢谢
只需将其转换为 String 并设置为 TextView,并在布局中预定义它。
TextView yourTextView = findById(R.id.text_view_id); yourTextView.setText("your base 64 string");