You cannot see this page without javascript.

웹사이트 APK 만들기

Programing 조회 수 2105 추천 수 0 2015.07.02 20:00:57

1. 자스 설치하시고

http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html

2.eclipse 어플 제작틀~~~

http://www.eclipse.org/downloads/

3.안드 모 거시기..

http://developer.android.com/sdk/index.html#download 

 

설정방법 질문 사절...;;;

 

001.jpg

 


002.jpg

 


003.jpg

 


004.jpg

 


005.jpg

 


006.jpg

 


007.jpg

 


008.jpg

 


009.jpg

 

 

010.jpg

 


011.jpg

 


012.jpg

 


013.jpg

 

 

014.jpg

 

​​

 

MainActivity.java

----------------------------------------------------------------

package com.example.sir;

import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.webkit.WebView;
import android.webkit.WebViewClient;

public class MainActivity extends Activity {

 
 WebView web;
 protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
  
  web = (WebView) this.findViewById(R.id.web1);
  web.setWebViewClient(new WebViewClient());
  web.loadUrl("http://sir.co.kr"); //자신에 홈피
 }
}
​----------------------------------------------------------------

activity_main.xml

​----------------------------------------------------------------

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="${relativePackage}.${activityClass}" >

 

    <WebView
        android:id="@+id/web1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true" />

</RelativeLayout>​

​----------------------------------------------------------------


List of Articles
번호 제목 글쓴이 날짜 조회 수sort
269 LinuxMint mint linux 한영키 [10] LynX 2014-12-19 388
268 Linux 리눅스 사용 기초 - 02 일반 명령어 사용법 익히기 LynX 2017-02-17 389
267 Xpress Engine XML 쿼리 대신 직접 mysql 사용하기 LynX 2014-07-16 393
266 Linux Linux 파티션 file LynX 2014-06-25 401
265 Linux linux 시간설정 file LynX 2016-10-07 401
264 CentOS7 ▒ Doly의 CentOS7 강좌23 8. 파일 및 디렉토리 관리 1-파일 브라우저 노틸러스 file [13] LynX 2015-06-09 407
263 inf 설치시 경고창 안뜨게 하기 file [10] LynX 2011-06-22 414
262 CentOS apache.service LynX 2015-02-25 416
261 APM Proxy AJP LynX 2014-05-27 419
260 OpenSolaris Open Solaris 설치 file [12] LynX 2014-12-30 420
259 SoftWare 포토샵 버튼 [17] LynX 2015-01-27 420
258 APM php7에 memcache.so 확장 모듈 적용 file LynX 2016-09-23 420
257 APM asp file LynX 2014-05-28 422
256 Linux PlayOnLinux [3] LynX 2014-11-28 422
255 APM hhvm install file LynX 2016-12-28 422
254 Linux libiconv LynX 2017-12-08 422
253 Xpress Engine XE 애드온의 제작 규칙 LynX 2014-07-11 423
252 Programing cab파일 만들기 file LynX 2014-06-13 425
251 윈도우서버2008 - 04 (그룹 생성,관리,권한) file LynX 2012-11-28 428
250 Windows XP USB로 XP 설치하기 file LynX 2013-06-20 429

XE Login