我想知道一些事情,我想使用Tabbed Activity在Android上创建一个应用程序,我已经完成了所有工作,但是我有一个问题,我想将TextViews放在其中一个标签中,并且不允许我实例化,如果我把
match = (TextView) findViewById (R.id.match);
程序告诉我:
Can not resolve method 'findViewById (int)'
我该怎么办?有什么办法吗?
package com.example.jose.firebaseimportante;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.EditText;
import android.widget.TextView;
public class TabbedUsuarioFutbol extends Fragment{
public TabbedUsuarioFutbol() {}
private TextView partido1;
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.futbol_tabbed_usuario, container, false);
return rootView;
match = (TextView)findViewById(R.id.match);
}
}
答案 0 :(得分:1)
更改
match = (TextView)findViewById(R.id.match);
到
match = rootView.findViewById(R.id.match);
和
return rootView;
应该是您的onCreateView
方法中的最后一条语句,因为return
语句之后的任何语句都是不可访问的语句,即它将永远不会执行。
您的onCreateView
方法应如下所示
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.futbol_tabbed_usuario, container, false);
match = rootView.findViewById(R.id.match);
return rootView;
}