What am i doing wrong below in the code the code compiles but when installed gives an error
package com.app.newapp;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.TextView;
public class NewappActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
ImageView.setVisibilty(View.INVISIBLE);
Button btn=(Button) findViewById(R.id.enter);
btn.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
String pwd="pd";
EditText et=(EditText) findViewById(R.id.pwd);
if(et.getText().toString().equalsIgnoreCase(pwd))
{
ImageView iv=(ImageView) findViewById(R.id.im1);
ImageView.setVisibilty(View.VISIBLE);
}
}
});
}