[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
팁앤테크 목록
번호 제목 글쓴이 조회 날짜
열람중 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 16 02-23
826 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 26697 11-02
825 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 29848 07-10
824 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 36798 04-06
823 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 27567 02-21
822 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 30903 12-31
821 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 26891 12-24
820 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 26248 12-04
819 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 28710 10-17
818 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 27431 10-02
817 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 44468 08-04
816 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 26811 08-04
815 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 34805 08-03
814 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 35097 07-08
813 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 57593 07-08
812 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 68785 07-06
811 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 27551 06-09
810 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 32452 06-03
809 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 30782 04-16
808 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 31294 03-29
807 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 26584 03-26
806 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 32961 03-12
805 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 28724 03-10
804 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 45694 03-03
803 제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 35200 02-28

검색

회원로그인

회원가입

사이트 정보

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

접속자집계

오늘
2,236
어제
9,217
최대
240,985
전체
2,503,605
Copyright (c) 株式会社YHPLUS. All rights reserved.