【发布时间】:2016-11-30 04:01:33
【问题描述】:
我正在尝试向我的片段布局添加一个按钮,但它说方法 findViewByid 无法解析。我在片段中的onCreateView 方法中实现它。为什么会出现这个错误?
import android.support.v4.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.ViewGroup;
import android.view.View;
import android.widget.Button;
public class extra extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
Button myButton = (Button) findViewById(R.id.my_button);
return inflater.inflate(R.layout.extra, container, false);
}
}
【问题讨论】:
-
因为你的类没有 findByViewId 方法
-
检查我的解决方案@asdddd
标签: java android android-studio android-fragments