Android 安卓 程序调试
classChoosePlayerAdapterextendsBaseAdapter{privateLayoutInflaterinflater;publicChoose...
class ChoosePlayerAdapter extends BaseAdapter{
private LayoutInflater inflater;
public ChoosePlayerAdapter(Context context){
inflater = getLayoutInflater().from(context);
}
警告提示:The static method from(Context) from the type LayoutInflater should be accessed in a static way ChoosePlayer.java
请问该怎么改。 展开
private LayoutInflater inflater;
public ChoosePlayerAdapter(Context context){
inflater = getLayoutInflater().from(context);
}
警告提示:The static method from(Context) from the type LayoutInflater should be accessed in a static way ChoosePlayer.java
请问该怎么改。 展开
3个回答
展开全部
估计你这个ChoosePlayerAdapter 是放在 Activity中的子类,所以你可以调用 getLayoutInflater();
去掉这个提示你可以使用 context.getLayoutInflater(),也就是通过你传进来的 context来调用就可以了。
去掉这个提示你可以使用 context.getLayoutInflater(),也就是通过你传进来的 context来调用就可以了。
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
from()方法是LayoutInflater类里的静态方法,你的getLayoutInflater()方法返回的就是个LayoutInflater对象了。
两种修改方法1:inflater = getLayoutInflater() ;
2:inflater = LayoutInflater.from(context) ;
两种修改方法1:inflater = getLayoutInflater() ;
2:inflater = LayoutInflater.from(context) ;
追问
能不能提供一个邮箱,需要你帮忙,谢谢!真心需要帮忙!!
追答
dongzig@gmail.com,
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-09-25
展开全部
LayoutInflater.from(context)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询