블로그에 프로그램 소스를 이쁘게(?) 치장하는 방법중에서 유명한 "SyntaxHighlighter" 사용하기 절차
1. 모듈받기
2. 특정 폴더에 풀어 놓는다.
- scripts
- styles
3. 2개의 폴더를 모두 올린다.
-관리자 화면 > 스킨 > HTML/CSS편집 > 파일 업로드에서 파일 업로드
4. 코드 추가 : tistory.com
-관리자 화면 > 스킨 > HTML/CSS편집
-HTML/CSS편집에서 <head></head>사이에 있는 <title> 밑에 아래 코드를 추가해 줍니다.
5. font-size 변경
-http://www.technical-recipes.com/2015/changing-the-font-size-of-syntaxhighlighter/
6.실행/적용 예제
public class Map2 extends MapActivity { //--------------------- /** Called when the activity is first created. */ //--------------------- @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); } @Override protected boolean isRouteDisplayed() { // TODO Auto-generated method stub return false; } private void initVar() { textView.setText("시작="); // 상단 텍스트 영역 textView2.setText("시작=..."); // 하단 텍스트 영역 lat=0.0d; // latitude lng=0.0d; // longitude acc=""; // 정확도 pro=""; // 좌표 정보 제공자 gps_status="2"; addressString = "..."; fine=0; // 0 : GPS 1: Network } }
'0.일반개발' 카테고리의 다른 글
Quake2 on Android (0) | 2010.09.06 |
---|---|
자작 안드로이드 구현 소스 (2) | 2010.09.03 |
Android AR ( Augmented Reality 증감현실 ) 기술 요소 (0) | 2010.09.01 |
Application Fundamentals: Component Lifecycles (1) | 2010.09.01 |
Application Fundamentals:Processes and Threads (0) | 2010.09.01 |