-2
フラグメントでGoogle APIクライアントを使用することはできません。フラグメントでGoogleAPIクライアントを使用する方法
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.layout_case_summary, container, false);
initView(rootView);
return rootView;
if(mGoogleApiClient==null) {
mGoogleApiClient = new GoogleApiClient.Builder(getActivity())
.addConnectionCallbacks(this)
.addOnConnectionFailedListener(this)
.addApi(LocationServices.API)
.build();
}
}
"到達不能文"。あなたはこれを研究していませんでしたか? –