Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | |
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
| 28 | 29 | 30 | 31 |
Tags
- Maven
- MANTIS
- 웹 서비스
- MSsql
- scrollView
- Apache Lucene
- javascript
- varags
- asp.net
- Java
- WebView
- TextBox
- Bootstrap
- C#
- Redirect
- 이클립스
- STS
- 안드로이드
- 웹뷰
- 자바
- 자바스크립트
- Android
- 컬럼명
- MS-SQL
- decompiler
- Web Service
- Eclipse
- jsp
- SpringSource Tool Suite
- html
Archives
- Today
- Total
bboks.net™
안드로이드 레이아웃에 클릭 이벤트 추가 본문
ViewGroup layout = (ViewGroup) findViewById(R.id.main_layout);
layout.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
Intent intent = new Intent(this, SubActivity.class);
startActivity(intent);
}
});