在 Android 中单击按钮后将新视图添加到布局
我正在为纸牌游戏“黑桃”开发记分应用程序。
单击每只手牌末尾的按钮后,我想将有关该手牌的一些信息存储到 TextView 中,并在 ScrollView 中显示所有手牌历史记录。
如何修改 .XML 布局或以其他方式将新的 TextView 添加到代码中的布局?
我已经尝试过...
public static LinearLayout gamehistory;
gamehistory = (LinearLayout) findViewById(R.id.gamehistory);
public void setClickListener1(){
lockwagersButton.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
setContentView(R.layout.results_layout);
gameHistory.addView(new TextView(...)); // I can't get this to work
...
谢谢! -KH
I'm developing a Scorekeeping Application for the card game "Spades".
Upon a button click at the end of each hand, I would like to store some information about the hand into a TextView and display all of the hand histories in a ScrollView.
How can I modify an .XML layout or otherwise add a new TextView to a layout in code?
I have tried...
public static LinearLayout gamehistory;
gamehistory = (LinearLayout) findViewById(R.id.gamehistory);
public void setClickListener1(){
lockwagersButton.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
setContentView(R.layout.results_layout);
gameHistory.addView(new TextView(...)); // I can't get this to work
...
Thanks!
-K.H.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
以下代码添加textview onclick:
following code add textview onclick:
使用以下代码。
Use the following code.
根据你给我的
Based on what you gave me