作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在动态创建 X 数量的 TextView,并使用 View.generateViewId() 为它们提供 ID。
TextView textView = new TextView(this);
textView.setText("_");
...
...
int id = View.generateViewId();
textView.setId(id);
然后我生成了一些 ID,例如 1-5,具体取决于 TextView 的数量。但是在搜索了不同的论坛和官方 android 站点之后,我不知道如何访问这些 ID。
如果我想在其中使用 setText(),我该如何定位 ID = 1 的 TextView?尝试了一些不同的方法,例如使用 findViewById 和 R-class,但似乎不起作用。
感谢任何直接帮助或相关链接,谢谢。
最佳答案
声明 map :
public static final Map<String, Integer> ITEM_MAP = new HashMap<String, Integer>();
跟踪项目:
int id = View.generateViewId();
textView.setId(id);
ITEM_MAP.put("key1", id);
int id2 = View.generateViewId();
textView.setId(id2);
ITEM_MAP.put("key2", id2);
3.然后在需要的时候:
int id = ITEM_MAP.get("key?X");
TextView textView = findViewById(id);
祝你好运
关于android - 使用 View.GenerateViewId 创建 ID 时如何使用 ID 查找 TextView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52354432/
我正在动态创建 X 数量的 TextView,并使用 View.generateViewId() 为它们提供 ID。 TextView textView = new TextView(this);
我是一名优秀的程序员,十分优秀!