android动态创建的Textview怎么获取或者给他设置一个ID

android动态创建的Textview怎么获取或者给他设置一个ID,第1张

ID本身是个int类型的,就算设置也只能给一个随机不重复的int数字,但是如果想要通过字符串去实现,用个HashMap把键值对存下来

final static HashMap<String, Integer>listView = new HashMap<String, Integer>()

赋值IDlinearLayout.setId(唯一id)

键值对listView.put(字符串id, 前边定义的唯一int ID)

获取

public static Integer getViewIdById(String id){

if (listView.containsKey(id))

return listView.get(id)

else

return -1

}

在线性布局LinearLayout里加入view比较简单,因为属性比较少,布局简单 示例,加入一个TextView LinearLayout layout = (LinearLayout)findViewById(R.id.layout)TextView tv = new TextView(this)tv.setText("hello,world")LayoutParams l


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11684054.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-17
下一篇 2023-05-17

发表评论

登录后才能评论

评论列表(0条)

保存