标签式 Activity Android 工作室

Tabbed Activity Android Studio

我想知道一些事情,我想在 android 上使用 Tabbed Activity 制作一个应用程序,我已经完成了所有事情,但是我有一个问题,我想将 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);

    }

}

改变

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; 
}