Android:以编程方式设置编辑文本或文本视图 ID

Android: Set Edit text or text view id Programmatically(Android:以编程方式设置编辑文本或文本视图 ID)
本文介绍了Android:以编程方式设置编辑文本或文本视图 ID的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在开发一个应用程序,我在其中以编程方式创建一个 Edittext:

I am developing an application in which i am creating an Edittext programmatically as :

EditText edText = new EditText(this);
edText.setId(1);
edText .setLayoutParams(new TableLayout.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT,0f));
edText .setInputType(InputType.TYPE_CLASS_NUMBER);
edText.setHint("dsgsdgsgs");
tableLayout.addView(edText);

在这里,我通过 edText.setId(1); 行将编辑文本的 id 设置为1",以整数表示.

Here I am setting the id of the Edit text as "1" by the line edText.setId(1); in integer.

但我需要的是 - 我想以字符设置 ID,例如:

But what i need is - I want to set the ID in character as for example:

edText.setId("edittext_hello");

这样我就可以通过该 ID 访问它.我怎样才能完成这项任务,请帮忙.

So that i can access it via that id. How can i achieve this task please help.

推荐答案

不能将 id 设置为 String.您只能将整数分配为 Id.但是,如果您想使用 String 作为 id 以便于使用,那么 -在 res/values/ids.xml 文件中

You can't set id as a String. You can only assign integer as Id. But if you want to use String as id for the ease of use then - in res/values/ids.xml file

<?xml version="1.0" encoding="utf-8"?>
<resources>

    <item name="edit_text_hello" type="id"/>

</resources>

然后将其用作:

edText.setId(R.id.edit_text_hello);

所以你可以做你需要的.

So you can do what you need.

这篇关于Android:以编程方式设置编辑文本或文本视图 ID的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

How to target newer versions in .gitlab-ci.yml using auto devops (java 11 instead of 8 and Android 31 instead of 29)(如何在.gitlab-ci.yml中使用自动开发工具(Java 11而不是8,Android 31而不是29)瞄准较新的版本)
Android + coreLibraryDesugaring: which Java 11 APIs can I expect to work?(Android+core LibraryDesugering:我可以期待哪些Java 11API能够工作?)
How to render something in an if statement React Native(如何在If语句中呈现某些内容Reaction Native)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)
Using Firebase Firestore in offline only mode(在仅脱机模式下使用Firebase FiRestore)
Crash on Google Play Pre-Launch Report: java.lang.NoSuchMethodError(Google Play发布前崩溃报告:java.lang.NoSuchMethodError)