일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Apache Lucene
- Android
- scrollView
- html
- javascript
- MS-SQL
- SpringSource Tool Suite
- WebView
- C#
- Java
- 자바스크립트
- Redirect
- decompiler
- STS
- TextBox
- 컬럼명
- asp.net
- 이클립스
- MANTIS
- 웹 서비스
- jsp
- Web Service
- varags
- Eclipse
- Maven
- 웹뷰
- 안드로이드
- 자바
- MSsql
- Bootstrap
- Today
- Total
목록Mobile Programming (26)
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
style.xml android:typeface를 지정해주지 않으면 시스템 기본 폰트를 따라감 코드 myTextView.setTextAppearance(getApplicationContext(), R.style.boldText); [출처] How to change a TextView's style at runtime