gpt4 book ai didi

android - getApplicationContext() 使用时抛出异常

转载 作者:行者123 更新时间:2023-11-29 18:22:06 33 4
gpt4 key购买 nike

我已经根据现有 Android 项目中的另一个类指定了一个类。 addRow() 方法应该动态地将行添加到表中。创建新的 TextView 以添加到我的行时以及创建该行时,我应该指定“上下文”。当前的方式,尝试“getApplicationContext()”会抛出 NullPointerException。那么我应该从哪里获取上下文呢?

public class DistanceTableView extends ContactListActivity
{
public void addRow(LocationMessage locationMsg){
View messageView = theInflater.inflate(R.layout.homepage, null);
TableLayout table = (TableLayout)messageView.findViewById(R.id.distanceTable);

TextView senderNameTextView = new TextView(getApplicationContext());
senderNameTextView.setText(locationMsg.getSenderName());

TableRow tr = new TableRow(getApplicationContext());
tr.addView(distanceTextView);
table.addView(tr);

rows.addFirst(messageView);
}
}

我的 View 正在扩展的类:

public class ContactListActivity extends MapActivity implements
ConnectionListener {}

最佳答案

我想您必须将上下文传递给类的构造函数。

关于android - getApplicationContext() 使用时抛出异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4851394/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com