In the attached united-nations.json
you will find a list of all regions/subregions of the world WITHOUT countries.
The map is based on the Wikipedia article
{
"Africa": [
"Eastern Africa",
/** | |
* 비동기로 비트맵 이미지에 Blur효과를 설정하고 필요한 후 처리들을 한다. | |
* | |
* @author KangSung-Woo | |
*/ | |
public class AsyncBlurTask | |
extends AsyncTask<Bitmap, Integer, Bitmap> { | |
// 이미지 리사이징 할 최소 사이즈 | |
public static final int DEFAULT_SIZE_PX = 30; | |
private static final String TAG = AsyncBlurTask.class.getSimpleName(); |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
<title>Загрузка файлов на сервер</title> | |
</head> | |
<body> | |
<h2><p><b> Форма для загрузки файлов </b></p></h2> | |
<form action="upload.php" method="post" enctype="multipart/form-data"> | |
<input type="file" name="filename"><br> |
In the attached united-nations.json
you will find a list of all regions/subregions of the world WITHOUT countries.
The map is based on the Wikipedia article
{
"Africa": [
"Eastern Africa",
Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT); | |
intent.addCategory(Intent.CATEGORY_OPENABLE); | |
intent.setType("*/*"); | |
intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true); | |
// In code that handles the result returned to process the files: | |
ClipData clipData = intent.getClipData(); |