use of android.widget.Gallery in project android_frameworks_base by DirtyUnicorns.
the class BiDiTestGalleryLtr method onCreateView.
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.gallery_ltr, container, false);
Gallery g = (Gallery) v.findViewById(R.id.galleryview);
g.setAdapter(new BiDiTestGalleryImages(this.getActivity().getBaseContext()));
return v;
}
use of android.widget.Gallery in project android_frameworks_base by ResurrectionRemix.
the class BiDiTestGalleryRtl method onCreateView.
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.gallery_rtl, container, false);
Gallery g = (Gallery) v.findViewById(R.id.galleryview);
g.setAdapter(new BiDiTestGalleryImages(this.getActivity().getBaseContext()));
return v;
}
use of android.widget.Gallery in project android_frameworks_base by ResurrectionRemix.
the class BiDiTestGalleryLtr method onCreateView.
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.gallery_ltr, container, false);
Gallery g = (Gallery) v.findViewById(R.id.galleryview);
g.setAdapter(new BiDiTestGalleryImages(this.getActivity().getBaseContext()));
return v;
}
use of android.widget.Gallery in project android_frameworks_base by crdroidandroid.
the class BiDiTestGalleryLtr method onCreateView.
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.gallery_ltr, container, false);
Gallery g = (Gallery) v.findViewById(R.id.galleryview);
g.setAdapter(new BiDiTestGalleryImages(this.getActivity().getBaseContext()));
return v;
}
Aggregations