- 参考ページ
https://www.blender.org/manual/editors/uv_image/introduction.html
https://www.blender.org/manual/editors/uv_image/image/image_settings.html#image-generated
- Windows 10 Home 64bit / macOS Sierra 10.12.1
- Blender 2.78a 64bit
| package com.example.calendar; | |
| import android.app.Activity; | |
| import android.os.Bundle; | |
| import android.view.ViewGroup; | |
| import android.widget.CalendarView; | |
| import android.widget.RelativeLayout; | |
| public class PronamaChanCalendarActivity extends Activity { |
| <resources> | |
| <style name="AppTheme" parent="android:Theme.Holo.Light.NoActionBar"> | |
| <item name="android:windowIsTranslucent">true</item> | |
| <item name="android:windowBackground">@android:color/transparent</item> | |
| </style> | |
| </resources> |
| import android.util.Log; | |
| public class DebugLog { | |
| private static final String TAG = "MyApp"; | |
| private static final int MAX_TAB_COUNT = 8; | |
| private static final int TAB_SIZE = 4; | |
| private static final int INDEX = 3; | |
| /* |
| import android.util.Log; | |
| public class DebugLog { | |
| public static void v(String tag, String message) { | |
| if (BuildConfig.DEBUG) { | |
| Log.v(tag, message); | |
| } | |
| } |
| import android.app.Activity; | |
| import android.app.KeyguardManager; | |
| import android.content.BroadcastReceiver; | |
| import android.content.Context; | |
| import android.content.Intent; | |
| import android.content.IntentFilter; | |
| import android.os.Bundle; | |
| import android.util.Log; | |
| public class MainActivity extends Activity { |
| import java.security.MessageDigest; | |
| import java.security.NoSuchAlgorithmException; | |
| import android.app.Activity; | |
| import android.os.Bundle; | |
| import android.util.Log; | |
| public class MainActivity extends Activity { | |
| private final String TAG = getClass().getSimpleName(); |
| import android.app.Activity; | |
| import android.os.Bundle; | |
| import android.util.Log; | |
| public class MainActivity extends Activity { | |
| private final String TAG = getClass().getSimpleName(); | |
| @Override | |
| public void onCreate(Bundle savedInstanceState) { |
| import android.app.Activity; | |
| import android.content.Context; | |
| import android.media.AudioManager; | |
| import android.media.SoundPool; | |
| import android.os.Bundle; | |
| import android.view.View; | |
| public class MainActivity extends Activity implements View.OnClickListener { | |
| private SoundPool mSoundPool; |
| /* | |
| * Copyright 2010 Facebook, Inc. | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |