Lines Matching refs:view
7 import android.view.LayoutInflater;
8 import android.view.View;
9 import android.view.ViewGroup;
13 public class InfoDialogFragment extends DialogFragment implements View.OnClickListener {
26 public View onCreateView(LayoutInflater inflater, ViewGroup container,
28 View view = inflater.inflate(R.layout.fragment_info, container);
30 mOkButton = (Button) view.findViewById(R.id.info_ok_button);
33 mInfoText= (TextView) view.findViewById(R.id.info_text);
37 return view;
41 public void onClick(View v) {