You cannot see this page without javascript.

웹사이트 APK 만들기

Programing 조회 수 2121 추천 수 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
번호 제목 글쓴이 날짜 조회 수
369 APM mariadb download origin address LynX 2019-06-19 1989
368 APM What one can and should optimize LynX 2019-06-03 1415
367 CentOS mariadb install LynX 2019-05-31 1179
366 CentOS init mode change LynX 2019-05-30 1288
365 APM ext zip install LynX 2019-02-19 1612
364 APM ext ImageMagick install LynX 2019-02-19 511
363 3D Printer Pronterface(PrintRun) install file LynX 2018-09-13 753
362 CentOS Grub UUID change LynX 2018-08-08 867
361 Linux letsencrypt wildcard LynX 2018-07-26 798
360 Printer cura usb connection LynX 2018-07-06 666
359 CentOS cli 무선랜 LynX 2018-06-07 446
358 APM 윈도우에 APM 페키지 설치 file LynX 2018-05-04 586
357 APM MySQLTuner 설치 LynX 2018-04-27 544
356 CentOS CentOS7 커널 업데이트 LynX 2018-04-23 699
355 HTML Tag CSS 여러가지 모양 만들기 LynX 2018-02-08 771
354 Linux wkhtmltopdf wkhtmltoimage install LynX 2018-01-31 602
353 APM LZ4_LIBS Not Found (CentOS7, MariaDB 10.1.29) LynX 2018-01-03 485
352 APM mysql ./configure LynX 2017-12-15 804
351 APM PHP-7.2.0 LynX 2017-12-12 3157
350 Linux libiconv LynX 2017-12-08 558

XE Login