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

Lines Matching refs:view

27 import android.view.View;
28 import android.view.ViewGroup;
62 public void onItemClick(AdapterView<?> adapterView, View view, int position, long id) {
78 // Now we provide a list of Pair items which contain the view we can transitioning
79 // from, and the name of the view it is transitioning to, in the launched activity
80 new Pair<View, String>(view.findViewById(R.id.imageview_item),
82 new Pair<View, String>(view.findViewById(R.id.textview_name),
111 public View getView(int position, View view, ViewGroup viewGroup) {
112 if (view == null) {
113 view = getLayoutInflater().inflate(R.layout.grid_item, viewGroup, false);
119 ImageView image = (ImageView) view.findViewById(R.id.imageview_item);
123 TextView name = (TextView) view.findViewById(R.id.textview_name);
126 return view;