如何将EditText用户输入存储到C#中的字符串变量中

时间:2018-11-08 09:58:29

标签: c# xamarin xamarin.forms

我正在尝试将此变量作为对我的php文件的http调用的参数传递,该php文件将其插入数据库。如果我创建字符串并手动设置它,则一切正常。但是,当我尝试使用用户输入时,我的应用程序崩溃了。我以为我无法将来自EditText的用户输入存储到c#中的字符串变量中。我在Java中阅读过,人们使用.getText()。toString(),但C#没有getText()。我已经尝试过了:

EditText usernameText = FindViewById<EditText>(Resource.Id.editUsername);
string username = usernameText.Text; 

我也尝试过:

string username = usernameText.toString();

1 个答案:

答案 0 :(得分:1)

<EditText
    android:id="@+id/edittext"
    android:layout_width="match_parent"
    android:imeOptions="actionGo"
    android:inputType="text"
    android:layout_height="wrap_content" />

现在在C#中,您应该执行以下操作

string str = edittext.text;