------

[ AD ] Port Monitor ( Try to use a Best WebSite Monitoring Tool )

------
블로그에 프로그램 소스를 이쁘게(?) 치장하는 방법중에서 유명한 "SyntaxHighlighter" 사용하기 절차


1. 모듈받기

다운로드 3.0.83



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
}
}


+ Recent posts