반응형
안드로이드 버전에 탑재된 리눅스 커널 버전을 확인하기 위해서는 위키(http://en.wikipedia.org/wiki/Android_version_history)를 통해 확인할 수 있다.
만약 내가 누군가의 모바일 에서 리눅스 커널 버전을 application으로 확인하기 위한 앱 소스는 다음과 같다.
간단 소스
package com.google;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
public class OSFinderActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
TextView tv = new TextView(this);
tv.setText(System.getProperty("os.version"));
setContentView(tv);
}
}
리눅스 커널 버전을 확인
반응형
'프로그래밍 정리 > 안드로이드' 카테고리의 다른 글
안드로이드에 탑재된 리눅스 커널 버전 확인하기 (0) | 2012.06.13 |
---|---|
디바이스 모델명 (0) | 2012.06.13 |
widget 컴포넌트 update 하기 -> AppWidgetManager.updateAppWidget(widgetID, rViews) (0) | 2012.06.13 |
안드로이드 021: Thread 구현하기 2/2 (with AsyncTask & ProgressBar) (0) | 2012.06.12 |
HttpDownloader (Http프로토콜 다운로드를 도와주는 클래스) (0) | 2012.06.12 |