我正在开发我的第一个andoid应用程序,并希望将一些数据发布到我的php webservice。我有以下signup.xml表单
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/signup_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity">
<TextView
android:id="@+id/header"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/textView6"
android:layout_centerHorizontal="true"
android:layout_marginTop="20dp"
android:text="Please Register To Get Started"
android:textSize="20sp" />
.
.
.
<Button
android:id="@+id/signupbutton"
style="@android:style/Widget.Material.Button.Borderless"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/phone"
android:layout_centerHorizontal="true"
android:layout_marginTop="20dp"
android:background="@drawable/rg_bg"
android:text="Signup"
android:textColor="#ffffff"
android:textSize="20sp"
android:onClick="send" />
</RelativeLayout>
这是signup.java文件的相应代码
package com.example.abhi.myapplication2;
import android.os.Bundle;
import android.support.v7.app.ActionBarActivity;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.Button;
import android.widget.EditText;
public class signup extends ActionBarActivity {
EditText username,pass,cpass,mail,phn;
String uname,password,confirmpass,email;
int phone=0;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.login);
username = (EditText)findViewById(R.id.username);
pass = (EditText)findViewById(R.id.password);
cpass = (EditText)findViewById(R.id.comfirmpass);
mail = (EditText)findViewById(R.id.email);
phn = (EditText)findViewById(R.id.phone);
Button signup = (Button)findViewById(R.id.signupbutton);
public void send(View v)
{
//Some code will go here
}
}
我正在阅读教程并尝试编码,现在教程说要使注册按钮工作,我需要创建public void send(View V)
,但这一行会引发错误 - Cannot Resolve Symbol View
为什么会出现这个错误,在上面的情况下,我想要做的就是在用户点击signup button
时将一些数据发布到我的php后端,这应该是解决这种情况的正确方法?
答案 0 :(得分:1)
尝试import android.view.View;
IDE通常负责导入,你不使用Android Studio或Eclipse吗?