대충 틀은 잡았는데 제가 프로그램을 잘못짜서 그러는 그다음을 어떡해 해야될지
public class TestButton extends Activity
{
 private ImageButton imageButton1, naver, hybus;
 
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
       
        TableRow tableRow=new TableRow(this);
       
        imageButton1 = (ImageButton) findViewById(R.id.imageButton1B);
              
   
        imageButton1.setOnClickListener(new View.OnClickListener() {
             public void onClick(View v) {
                   Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://portal.semyung.ac.kr/index_ksign_os.jsp"));
                   TestCase.this.setvisibility(intent); <- 여기서 에러가 나는데  어떡해 해야될지
            }
        });
       


    }
}