【发布时间】:2014-03-21 08:23:03
【问题描述】:
我想将 android 剪贴板文本粘贴到我的编辑文本中。
var button = MainActivity.This.FindViewById<Button> (Resource.AddLinks.btn_Paste);
EditText txt_Address = MainActivity.This.FindViewById<EditText> (Resource.AddLinks.txt_Address);
button.Click += (sender,e) =>
{
txt_Address.Text=//How to Paste Android Clipbord?
};
【问题讨论】:
标签: c# android xamarin.android