Sino.Droid.AppMsg.AppMsg.SetText C# (CSharp) Méthode

SetText() public méthode

public SetText ( String s ) : void
s String
Résultat void
        public void SetText(String s)
        {
            if (mView == null)
            {
                throw new ArgumentNullException("mView");
            }
            TextView tv = mView.FindViewById<TextView>(Android.Resource.Id.Message);
            if (tv == null)
            {
                throw new ArgumentNullException("tv");
            }
            tv.Text = s;
        }

Same methods

AppMsg::SetText ( int resId ) : void