Home | History | Annotate | Download | only in com.example.android.basictransition

Lines Matching refs:view

24 import android.view.LayoutInflater;
25 import android.view.View;
26 import android.view.ViewGroup;
51 public View onCreateView(LayoutInflater inflater, ViewGroup container,
53 View view = inflater.inflate(R.layout.fragment_basic_transition, container, false);
54 assert view != null;
55 RadioGroup radioGroup = (RadioGroup) view.findViewById(R.id.select_scene);
57 mSceneRoot = (ViewGroup) view.findViewById(R.id.scene_root);
60 // A Scene can be instantiated from a live view hierarchy.
79 return view;
108 // Then, we can just change view properties as usual.
109 View square = mSceneRoot.findViewById(R.id.transition_square);