๐
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="ko"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>๋ผ์ด๋ ๋ชจ์๋ฆฌ ํ ์ด๋ธ</title> | |
<style> | |
table { | |
border-collapse: collapse; | |
width: 100%; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.clipandbooks.test.myapplication; | |
import android.app.Activity; | |
import android.content.Intent; | |
import android.content.res.Configuration; | |
import android.graphics.Bitmap; | |
import android.os.Bundle; | |
import android.util.Log; | |
import android.view.View; | |
import android.webkit.WebResourceError; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
See android:tint and android:tintMode | |
--> | |
<ImageView | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:src="@drawable/sample_img" | |
android:tint="#CCCCCC" | |
android:tintMode="add"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// impport, package name skipped... | |
public class EditTextPhoneNumberActivity extends Activity implements View.OnClickListener{ | |
private EditText mPhoneNumber; | |
private TextView mOutputNumber; | |
private TextView mOutputNumber_refined; | |
private Button mBtn; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
2015.10.29 | |
Hong SeongChan ([email protected]) | |
------------------------------------------- | |
๋ชจ๋ฐ์ผ ์น ํ์ด์์ ๊ฐ๋ฐํ๊ณ ์๋ ์ฑ์ด ์คํ์ด ์๋๊ธธ๋ ์ํ์ฝ๋๋ฅผ ์์ฑํด ๋ด. | |
์ด ์์ค์ ์ ์ ์กฐ๊ฑด์ uri scheme ๋ฐฉ์์ด ์ ์ฉ๋ ์ฑ์ ๊ธฐ์ค์ผ๋ก ํ๋ค. | |
Android ์ฑ์ ๊ฒฝ์ฐ intent๋ฅผ ์ด์ฉํ ๋ฐฉ์์ ์ฃผ๋ก ์ฌ์ฉํ๊ฒ ์ง๋ง, ๋ชจ๋ฐ์ผ ์น์ ๊ณ ๋ คํ๋ค๋ฉด uri scheme์ ์ ์ฉํ๋๊ฒ ์ ๋ฆฌํ๋ค. | |
(์น์ชฝ ์ฝ๋๊ฐ ๋จ์ํด ์ง๋ค.) | |
์๋ ์ฝ๋๋ ์ด๋ฌํ ์ ์ ๋ก ์์ฑ๋์๋ค. | |
--> |