Beispiel #1
0
        private void OpenFragment(string img1) //open fragments of every image
        {
            Bundle b = new Bundle();

            b.PutString("IMG1", img1);
            MyDialogFragment fragment = new MyDialogFragment();

            fragment.Arguments = b;
            fragment.Show(this.FragmentManager, "dialog");
        }
Beispiel #2
0
        public static MyDialogFragment newInstance()
        {
            MyDialogFragment f = new MyDialogFragment();

            return(f);
        }