Inheritance: android.view.View, android.view.ViewParent, android.view.ViewManager
 public virtual void updateViewLayout(View view, ViewGroup.LayoutParams @params)
 {
 }
 public override void setLayoutParams(ViewGroup.LayoutParams @params)
 {
     if (@params is XStandOutWindow.StandOutLayoutParams)
     {
         base.setLayoutParams(@params);
     }
     else
     {
         throw new System.Exception(
                 "Window"
                         + id
                         + ": LayoutParams must be an instance of StandOutLayoutParams.");
     }
 }
Beispiel #3
0
 public virtual void setLayoutParams(ViewGroup.LayoutParams @params)
 { }
 // https://sites.google.com/a/jsc-solutions.net/backlog/knowledge-base/2013/20/20130722-new-release
 public virtual void addView(View view, ViewGroup.LayoutParams @params)
 {
 }
Beispiel #5
0
			public _Runnable_2567(ViewGroup _enclosing)
			{
				this._enclosing = _enclosing;
			}
Beispiel #6
0
			public _TransitionListener_4892(ViewGroup _enclosing)
			{
				this._enclosing = _enclosing;
			}
Beispiel #7
0
		public override void addContentView (View view, ViewGroup.LayoutParams @params)
		{
			throw new NotImplementedException ();
		}
Beispiel #8
0
		public override void setContentView (View cview, ViewGroup.LayoutParams @params)
		{
			view.addView (cview, @params);

			if (getCallback () != null)
				getCallback ().onContentChanged ();
		}
        public void addContentView(View view, ViewGroup.LayoutParams @params)
        {

        }
Beispiel #10
0
		public override View onCreateView (LayoutInflater inflater, ViewGroup container, android.os.Bundle savedInstanceState)
		{
			return inflater.inflate (R.layout.monkey_image, container);
		}
Beispiel #11
0
        public static View AttachTo(this View v, ViewGroup g)
        {
            g.addView(v);

            return v;
        }