我的布局中有几个 EditText 输入,
<EditText
android:id="@+id/sign_up_user_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:hint="@string/user_name"
android:inputType="textPersonName"
android:singleLine="true" >
<requestFocus />
</EditText>
<EditText...
我想将用户输入传递到活动中,并在 onClick 时将用户输入传递到数据库(我正在使用 parse.com)。
public class SignUp extends Activity{
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.sign_up);
}
public void onClickSignUp(View view) {
ParseUser user = new ParseUser();
user.setUsername("document.getElementById('sign_up_user_name').value");
user.setPassword("document.getElementById('sign_up_password').value");
user.setEmail("document.getElementById('sign_up_email_address').value");
user.put("gender", "document.getElementById('sign_up_select_gender').checked");
ParseACL defaultACL = new ParseACL();
defaultACL.setPublicReadAccess(true);
ParseACL.setDefaultACL(defaultACL, true);
user.signUpInBackground(new SignUpCallback() {
public void done(ParseException e) {
if (e == null) {...
我已经学习了一些教程(包括 parse.com 上用于用户注册的教程,他们只使用静态字符串获取用户信息)。我知道我错过了将 EditText 输入传递到我的活动的一些元素,甚至可能是语法错误
user.setUsername("document.getElementById('sign_up_user_name').value");
任何帮助都会很热。谢谢你。