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.
我刚开始学习Android,遇到了一些误解。我正在尝试创建一个显示 textView 和按钮的应用程序。每个按钮单击都会生成一个随机文本视图。使用按钮单击在第二个活动中显示文本视图。
因此,您正在寻找一种添加多个 TextView 并设置其文本的方法?如果您想以编程方式执行此操作(因为您也可以从 XML 执行此操作,但它不会是动态的),您需要使用以下内容:
TextView tv = new TextView(this); tv.setText("Your quote text"); this.addView(tv);
请注意,您可以将上面的内容替换为要添加 TextViewthis的任何现有对象。View
this
View