일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- C#
- 웹뷰
- Web Service
- 자바스크립트
- MSsql
- TextBox
- javascript
- MS-SQL
- 안드로이드
- MANTIS
- 웹 서비스
- Java
- Eclipse
- Redirect
- 컬럼명
- SpringSource Tool Suite
- scrollView
- Android
- decompiler
- jsp
- html
- Apache Lucene
- STS
- Bootstrap
- asp.net
- varags
- Maven
- 자바
- 이클립스
- WebView
- 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