[php] 안드로이드 웹뷰 정리 2026-02-23 > 팁앤테크

본문 바로가기
사이트 내 전체검색

팁앤테크

[php] 안드로이드 웹뷰 정리 2026-02-23

페이지 정보

본문

9bd8344ae4448c715b78624d2c4d2ffe_1771850258_1827.png



9bd8344ae4448c715b78624d2c4d2ffe_1771850300_1786.png
 

9bd8344ae4448c715b78624d2c4d2ffe_1771854235_0291.png




manifests/AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">

<uses-permission android:name="android.permission.INTERNET" />

<application
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@drawable/logo"
android:label="@string/app_name"
android:roundIcon="@drawable/logo"
android:supportsRtl="true"
android:theme="@style/Theme.AppCompat.Light.NoActionBar"
android:usesCleartextTraffic="true"
android:hardwareAccelerated="true">
<activity
android:name=".MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>

kotlin+java/zeronara.net/MainActivity.java

package zeronara.net;

import android.os.Bundle;

import androidx.activity.EdgeToEdge;
import androidx.appcompat.app.AppCompatActivity;
import androidx.core.graphics.Insets;
import androidx.core.view.ViewCompat;
import androidx.core.view.WindowInsetsCompat;
import android.view.Window;
import android.webkit.WebSettings;
import android.webkit.WebView;
import android.webkit.WebViewClient;

public class MainActivity extends AppCompatActivity {
public WebView webView;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.activity_main);

webView = (WebView)findViewById(R.id.webView);
WebSettings webSettings = webView.getSettings();
webSettings.setJavaScriptEnabled(true);

// url
webView.loadUrl("https://zeronara.net");
webView.setWebViewClient(new WebViewClient());
}
}


res/layout/activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/main"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">

<WebView
android:id="@+id/webView"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>


res/values/strings.xml

<resources>
<string name="app_name">ZERONARA</string>
</resources>


아이콘 생성

***.png준비

9bd8344ae4448c715b78624d2c4d2ffe_1771854283_2008.png
 








댓글목록

등록된 댓글이 없습니다.

Total 827건 1 페이지
  • RSS
팁앤테크 목록
번호 제목 글쓴이 조회 날짜
열람중 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 18 02-23
826 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 26705 11-02
825 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 29852 07-10
824 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 36801 04-06
823 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 27568 02-21
822 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 30913 12-31
821 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 26894 12-24
820 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 26252 12-04
819 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 28716 10-17
818 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 27434 10-02
817 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 44475 08-04
816 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 26812 08-04
815 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 34810 08-03
814 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 35103 07-08
813 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 57604 07-08
812 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 68804 07-06
811 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 27557 06-09
810 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 32457 06-03
809 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 30791 04-16
808 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 31301 03-29
807 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 26592 03-26
806 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 32965 03-12
805 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 28727 03-10
804 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 45705 03-03
803 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 35206 02-28

검색

회원로그인

회원가입

사이트 정보

株式会社YHPLUS / 대표 : ZERO
〒140-0011 東京都品川区東大井2-5-9-203
050-5539-7787
오픈카카오톡 (YHPLUS) :
https://open.kakao.com/o/slfDj15d

접속자집계

오늘
3,069
어제
9,217
최대
240,985
전체
2,504,438
Copyright (c) 株式会社YHPLUS. All rights reserved.