일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- MSsql
- 웹뷰
- javascript
- Bootstrap
- MS-SQL
- scrollView
- Apache Lucene
- varags
- 자바
- C#
- jsp
- Java
- 자바스크립트
- decompiler
- asp.net
- WebView
- Eclipse
- Android
- html
- Web Service
- 컬럼명
- 안드로이드
- STS
- MANTIS
- TextBox
- SpringSource Tool Suite
- 웹 서비스
- Maven
- Redirect
- 이클립스
- Today
- Total
목록안드로이드 (13)
bboks.net™
방법1 Intent intent = new Intent(Intent.ACTION_MAIN); //, intent.setClassName("com.example.package", "com.example.package.ActivityToStart"); startActivity(intent); 방법2 PackageManager pm = getPackageManager(); Intent intent = pm.getLaunchIntentForPackage("com.example.package"); startActivity(intent); 두번째 방법을 추천 [출처] Calling an app from another app
private void scrollMyListViewToBottom() { myListView.post(new Runnable() { @Override public void run() { // Select the last row so it will scroll into view... myListView.setSelection(myListAdapter.getCount() - 1); } }); } [출처] Listview Scroll to the end of the list after updating the list
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); } }); [출처] [안드로이드] LinearLayout 자체 클릭시 다음 화면으로 넘어가게 못하나요?
1. Java SDK 설치2. Eclipse 설치(여기선는 Java Developer 버전 사용) 3. Android SDK 설치4. Maven 설치 또는 Eclipse 내장 사용5. Eclipse 에 ADT(Android Development Tool) 플러그인 주소: https://dl-ssl.google.com/android/eclipse/6. 플러그인 설치 후 Eclipse의 Android SDK Manager를 열어 설치된 항목 확인7. Eclipse에 m2eclipse 플러그인 설치 주소: http://download.eclipse.org/technology/m2e/releases8. Maven 에 Android용 Archetype 설정8.1 Eclipse의 Package Explorer에서 ..