SlideShare una empresa de Scribd logo
1 de 107
Descargar para leer sin conexión
Now Loading. Please Wait ...




                 ECC

                       Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
https://dl-ssl.google.com/android/eclipse/

                                                              Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
<?xml version="1.0" encoding="utf-8"?>
                 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
                     android:orientation="vertical"
                     android:layout_width="fill_parent"
                     android:layout_height="fill_parent"
                     >
                 <TextView
                     android:layout_width="fill_parent"
                     android:layout_height="wrap_content"
                     android:text="@string/hello"
                     />
                 </LinearLayout>




                                                                Re:Kayo-System Co.,Ltd.

2011   10   29
�




                     Re:Kayo-System Co.,Ltd.

2011   10   29
<?xml version="1.0" encoding="utf-8"?>
                 <resources>
                     <string name="hello">Hello World, HelloWorldActivity!</string>
                     <string name="app_name">HelloWorld</string>
                 </resources>




                                                             Re:Kayo-System Co.,Ltd.

2011   10   29
package jp.ykmjuku.helloworld;

                 public final class R {
                     public static final class attr {
                     }
                     public static final class drawable {
                         public static final int icon=0x7f020000;
                     }
                     public static final class layout {
                         public static final int main=0x7f030000;
                     }
                     public static final class string {
                         public static final int app_name=0x7f040001;
                         public static final int hello=0x7f040000;
                     }
                 }




                                                  Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
<?xml version="1.0" encoding="utf-8"?>
                 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
                       package="jp.ykmjuku.helloworld"
                       android:versionCode="1"
                       android:versionName="1.0">
                     <uses-sdk android:minSdkVersion="10" />

                     <application android:icon="@drawable/icon" android:label="@string/app_name">
                         <activity android:name=".HelloWorldActivity"
                                   android:label="@string/app_name">
                             <intent-filter>
                                 <action android:name="android.intent.action.MAIN" />
                                 <category android:name="android.intent.category.LAUNCHER" />
                             </intent-filter>
                         </activity>

                     </application>
                 </manifest>




                                                                  Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
package jp.co.kayo.android.sample.activity;

            import android.app.Activity;
            import android.os.Bundle;

            public class MainActivity extends Activity {
                /** Called when the activity is first created. */
                @Override
                public void onCreate(Bundle savedInstanceState) {
                    super.onCreate(savedInstanceState);
                    setContentView(R.layout.main);
                }
            }



                                                           Re:Kayo-System Co.,Ltd.

2011   10   29
<?xml version="1.0" encoding="utf-8"?>
                 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/
                 android"
                     android:layout_width="fill_parent"
                     android:layout_height="fill_parent"
                     android:orientation="vertical" >

                     <TextView
                         android:layout_width="fill_parent"
                         android:layout_height="wrap_content"
                         android:text="@string/hello" />

                 </LinearLayout>




                                                         Re:Kayo-System Co.,Ltd.

2011   10   29
<?xml version="1.0" encoding="utf-8"?>
       <manifest xmlns:android="http://schemas.android.com/apk/res/android"
           package="jp.co.kayo.android.sample.activity"
           android:versionCode="1"
           android:versionName="1.0" >

            <uses-sdk android:minSdkVersion="14" />

            <application
                android:icon="@drawable/ic_launcher"
                android:label="@string/app_name" >
                <activity
                    android:label="@string/app_name"
                    android:name=".MainActivity" >
                    <intent-filter >
                         <action android:name="android.intent.action.MAIN" />

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

       </manifest>




                                                                                       Re:Kayo-System Co.,Ltd.

2011   10   29
<?xml version="1.0" encoding="utf-8"?>
  <LinearLayout
      xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_width="fill_parent"
      android:layout_height="fill_parent"
      android:orientation="vertical" >

            <TextView
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="@string/hello" />

  </LinearLayout>




                                                                   Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Button button = (Button)findViewById(R.id.button1);
       button.setOnClickListener(new OnClickListener() {
           public void onClick(View v) {
               //
                 }
       });




                                                       Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Fragment fr = new MyFragment();
                 FragmentTransaction tr =
                      getSupportFragmentManager().beginTransaction();
                 tr.add(fr, "MyFragment");
                 tr.commit();




                                                           Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
public Fragment createFragment(int n){
                     MyFragment f = new MyFragment();
                     Bundle bundle = new Bundle();
                     bundle.putInt("num", n);
                     f.setArguments(bundle);
                     return f;
                 }

                 @Override
                 public void onCreate(Bundle savedInstanceState) {
                     super.onCreate(savedInstanceState);
                     if(savedInstanceState!=null){
                         n = savedInstanceState.getInt("num");
                     }
                     else{
                         Bundle bundle = getArguments();
                         if(bundle!=null){
                             n = bundle.getInt("num");
                         }
                     }
                 }

                                                                     Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Fragment fr = new MyFragment(n++);
                 FragmentTransaction tr =
                      getSupportFragmentManager().beginTransaction();
                 tr.replace(R.id.frameLayout1, fr);
                 tr.addToBackStack("task");
                 tr.commit();




                                                            Re:Kayo-System Co.,Ltd.

2011   10   29
Fragment f =
                    getSupportFragmentManager().
                       findFragmentByTag("tag");




                                Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
class MyAsyncTask extends AsyncTask<Void, Void, Void>{
                     Handler handler;
                     Context context;

                     @Override
                     protected Void doInBackground(Void... params) {
                         Cursor cur =
                             context.getContentResolver().query(
                                      Media.EXTERNAL_CONTENT_URI,
                                      null, null, null, null);
                         handler.sendMessage(handler.obtainMessage(0, cur));
                         return null;
                     }
                 }




                                                                  Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
LoaderCallbacks<T>


                 Bundle bundle = new Bundle();
                 getSupportLoaderManager().initLoader(
                      R.layout.main, bundle, this);




                                                         Re:Kayo-System Co.,Ltd.

2011   10   29
Bundle bundle = new Bundle();
                 getSupportLoaderManager().restartLoader(
                      R.layout.main, bundle, this);




                                                      Re:Kayo-System Co.,Ltd.

2011   10   29
@Override
                 public void onDestroy() {
                     super.onDestroy();
                     getLoaderManager().destroyLoader(R.layout.main);
                 }




                                                          Re:Kayo-System Co.,Ltd.

2011   10   29
LoaderCallbacks<T>
                 public static class MyLoaderFragment extends Fragment implements
                 LoaderCallbacks<Cursor>{
                     CursorAdapter adapter;

                     public Loader<Cursor> onCreateLoader(int arg0, Bundle arg1) {
                         return new CursorLoader(getActivity(),
                                 Media.EXTERNAL_CONTENT_URI,
                                 null, null, null, null);
                     }

                     public void onLoadFinished(Loader<Cursor> arg0, Cursor arg1) {
                         Cursor cur = adapter.swapCursor(arg1);
                     }

                     public void onLoaderReset(Loader<Cursor> arg0) {

                     }

                 }


                                                                            Re:Kayo-System Co.,Ltd.

2011   10   29
class ValueItem {
                     String name;
                     int age;
                 }




                                     Re:Kayo-System Co.,Ltd.

2011   10   29
public static class MyLoaderFragment2 extends Fragment implements
                 LoaderCallbacks<List<ValueItem>>{

                     public Loader<List<ValueItem>> onCreateLoader(int arg0, Bundle arg1) {
                         // TODO Auto-generated method stub
                         return null;
                     }

                     public void onLoadFinished(Loader<List<ValueItem>> arg0,
                             List<ValueItem> arg1) {
                         // TODO Auto-generated method stub

                     }

                     public void onLoaderReset(Loader<List<ValueItem>> arg0) {
                         // TODO Auto-generated method stub

                     }

                 }


                                                                                Re:Kayo-System Co.,Ltd.

2011   10   29
static class MyAsyncTaskLoader extends AsyncTaskLoader<List<ValueItem>>{

                       public MyAsyncTaskLoader(Context context) {
                           super(context);
                       }

                       @Override
                       public List<ValueItem> loadInBackground() {
                           List<ValueItem> list = new ArrayList<ValueItem>();
                           return list;
                       }
                 }




                     public Loader<List<ValueItem>> onCreateLoader(int arg0, Bundle arg1) {
                         MyAsyncTaskLoader l = new MyAsyncTaskLoader(getActivity());
                         l.forceLoad();
                         return l;
                     }

                                                                             Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29
Re:Kayo-System Co.,Ltd.

2011   10   29

Más contenido relacionado

Similar a 夜子まま塾Ecc

ADC MEETUP Round01 / SESSION1 : CS5.5 Web Premium Overall
ADC MEETUP Round01 / SESSION1 : CS5.5 Web Premium OverallADC MEETUP Round01 / SESSION1 : CS5.5 Web Premium Overall
ADC MEETUP Round01 / SESSION1 : CS5.5 Web Premium OverallKeisuke Todoroki
 
Making cloud portability a practical reality (i pad)
Making cloud portability a practical reality (i pad)Making cloud portability a practical reality (i pad)
Making cloud portability a practical reality (i pad)Nati Shalom
 
Drive faster & better software delivery with performance monitoring & DevOps
Drive faster & better software delivery with performance monitoring & DevOpsDrive faster & better software delivery with performance monitoring & DevOps
Drive faster & better software delivery with performance monitoring & DevOpsVolker Linz
 
Apache Camel
Apache CamelApache Camel
Apache CamelGenevaJUG
 
What Big Data Folks Need to Know About DevOps
What Big Data Folks Need to Know About DevOpsWhat Big Data Folks Need to Know About DevOps
What Big Data Folks Need to Know About DevOpsMatt Ray
 
What's coming in Java EE 8
What's coming in Java EE 8What's coming in Java EE 8
What's coming in Java EE 8David Delabassee
 
Web Performance Monitoring Tales
Web Performance Monitoring TalesWeb Performance Monitoring Tales
Web Performance Monitoring TalesCatchpoint Systems
 
What's Coming in Java EE 8
What's Coming in Java EE 8What's Coming in Java EE 8
What's Coming in Java EE 8PT.JUG
 
You Build It, But How Are You Going to Run It?
You Build It, But How Are You Going to Run It? You Build It, But How Are You Going to Run It?
You Build It, But How Are You Going to Run It? Rundeck
 
Piece Framework 2.0 Background
Piece Framework 2.0 BackgroundPiece Framework 2.0 Background
Piece Framework 2.0 BackgroundAtsuhiro Kubo
 
AWS 고객사를 위한 ‘AWS 컨테이너 교육’ - 유재석, AWS 솔루션즈 아키텍트
AWS 고객사를 위한 ‘AWS 컨테이너 교육’ - 유재석, AWS 솔루션즈 아키텍트AWS 고객사를 위한 ‘AWS 컨테이너 교육’ - 유재석, AWS 솔루션즈 아키텍트
AWS 고객사를 위한 ‘AWS 컨테이너 교육’ - 유재석, AWS 솔루션즈 아키텍트Amazon Web Services Korea
 
Scaling a Rails Application from the Bottom Up
Scaling a Rails Application from the Bottom Up Scaling a Rails Application from the Bottom Up
Scaling a Rails Application from the Bottom Up Abhishek Singh
 
How NOT to Measure Latency, Gil Tene, London, Oct. 2013
How NOT to Measure Latency, Gil Tene, London, Oct. 2013How NOT to Measure Latency, Gil Tene, London, Oct. 2013
How NOT to Measure Latency, Gil Tene, London, Oct. 2013Azul Systems Inc.
 
Causal Consistency For Large Neo4j Clusters by Jim Webber at Big Data Spain 2017
Causal Consistency For Large Neo4j Clusters by Jim Webber at Big Data Spain 2017Causal Consistency For Large Neo4j Clusters by Jim Webber at Big Data Spain 2017
Causal Consistency For Large Neo4j Clusters by Jim Webber at Big Data Spain 2017Big Data Spain
 
K8s, Amazon EKS - 유재석, AWS 솔루션즈 아키텍트
K8s, Amazon EKS - 유재석, AWS 솔루션즈 아키텍트K8s, Amazon EKS - 유재석, AWS 솔루션즈 아키텍트
K8s, Amazon EKS - 유재석, AWS 솔루션즈 아키텍트Amazon Web Services Korea
 
Migrate Early, Migrate Often: JDK release cadence strategies
Migrate Early, Migrate Often: JDK release cadence strategiesMigrate Early, Migrate Often: JDK release cadence strategies
Migrate Early, Migrate Often: JDK release cadence strategiesDanHeidinga
 
[2C4]Clustered computing with CoreOS, fleet and etcd
[2C4]Clustered computing with CoreOS, fleet and etcd[2C4]Clustered computing with CoreOS, fleet and etcd
[2C4]Clustered computing with CoreOS, fleet and etcdNAVER D2
 

Similar a 夜子まま塾Ecc (20)

夜子まま塾さくら
夜子まま塾さくら夜子まま塾さくら
夜子まま塾さくら
 
Andy lib解説
Andy lib解説Andy lib解説
Andy lib解説
 
ADC MEETUP Round01 / SESSION1 : CS5.5 Web Premium Overall
ADC MEETUP Round01 / SESSION1 : CS5.5 Web Premium OverallADC MEETUP Round01 / SESSION1 : CS5.5 Web Premium Overall
ADC MEETUP Round01 / SESSION1 : CS5.5 Web Premium Overall
 
Making cloud portability a practical reality (i pad)
Making cloud portability a practical reality (i pad)Making cloud portability a practical reality (i pad)
Making cloud portability a practical reality (i pad)
 
Drive faster & better software delivery with performance monitoring & DevOps
Drive faster & better software delivery with performance monitoring & DevOpsDrive faster & better software delivery with performance monitoring & DevOps
Drive faster & better software delivery with performance monitoring & DevOps
 
Apache Camel
Apache CamelApache Camel
Apache Camel
 
What Big Data Folks Need to Know About DevOps
What Big Data Folks Need to Know About DevOpsWhat Big Data Folks Need to Know About DevOps
What Big Data Folks Need to Know About DevOps
 
What's coming in Java EE 8
What's coming in Java EE 8What's coming in Java EE 8
What's coming in Java EE 8
 
Web Performance Monitoring Tales
Web Performance Monitoring TalesWeb Performance Monitoring Tales
Web Performance Monitoring Tales
 
What's Coming in Java EE 8
What's Coming in Java EE 8What's Coming in Java EE 8
What's Coming in Java EE 8
 
You Build It, But How Are You Going to Run It?
You Build It, But How Are You Going to Run It? You Build It, But How Are You Going to Run It?
You Build It, But How Are You Going to Run It?
 
Piece Framework 2.0 Background
Piece Framework 2.0 BackgroundPiece Framework 2.0 Background
Piece Framework 2.0 Background
 
AWS 고객사를 위한 ‘AWS 컨테이너 교육’ - 유재석, AWS 솔루션즈 아키텍트
AWS 고객사를 위한 ‘AWS 컨테이너 교육’ - 유재석, AWS 솔루션즈 아키텍트AWS 고객사를 위한 ‘AWS 컨테이너 교육’ - 유재석, AWS 솔루션즈 아키텍트
AWS 고객사를 위한 ‘AWS 컨테이너 교육’ - 유재석, AWS 솔루션즈 아키텍트
 
Scaling a Rails Application from the Bottom Up
Scaling a Rails Application from the Bottom Up Scaling a Rails Application from the Bottom Up
Scaling a Rails Application from the Bottom Up
 
How NOT to Measure Latency, Gil Tene, London, Oct. 2013
How NOT to Measure Latency, Gil Tene, London, Oct. 2013How NOT to Measure Latency, Gil Tene, London, Oct. 2013
How NOT to Measure Latency, Gil Tene, London, Oct. 2013
 
Causal Consistency For Large Neo4j Clusters by Jim Webber at Big Data Spain 2017
Causal Consistency For Large Neo4j Clusters by Jim Webber at Big Data Spain 2017Causal Consistency For Large Neo4j Clusters by Jim Webber at Big Data Spain 2017
Causal Consistency For Large Neo4j Clusters by Jim Webber at Big Data Spain 2017
 
K8s, Amazon EKS - 유재석, AWS 솔루션즈 아키텍트
K8s, Amazon EKS - 유재석, AWS 솔루션즈 아키텍트K8s, Amazon EKS - 유재석, AWS 솔루션즈 아키텍트
K8s, Amazon EKS - 유재석, AWS 솔루션즈 아키텍트
 
JavaCro'15 - Java EE 8 - An instant snapshot - David Delabassee
JavaCro'15 - Java EE 8 - An instant snapshot - David DelabasseeJavaCro'15 - Java EE 8 - An instant snapshot - David Delabassee
JavaCro'15 - Java EE 8 - An instant snapshot - David Delabassee
 
Migrate Early, Migrate Often: JDK release cadence strategies
Migrate Early, Migrate Often: JDK release cadence strategiesMigrate Early, Migrate Often: JDK release cadence strategies
Migrate Early, Migrate Often: JDK release cadence strategies
 
[2C4]Clustered computing with CoreOS, fleet and etcd
[2C4]Clustered computing with CoreOS, fleet and etcd[2C4]Clustered computing with CoreOS, fleet and etcd
[2C4]Clustered computing with CoreOS, fleet and etcd
 

Más de Masafumi Terazono

Kobe.py 勉強会 minecraft piスライド
Kobe.py 勉強会 minecraft piスライドKobe.py 勉強会 minecraft piスライド
Kobe.py 勉強会 minecraft piスライドMasafumi Terazono
 
Minecraftと連携するSlackちゃんという会話Botを作った話
Minecraftと連携するSlackちゃんという会話Botを作った話Minecraftと連携するSlackちゃんという会話Botを作った話
Minecraftと連携するSlackちゃんという会話Botを作った話Masafumi Terazono
 
初心者〜中級者 Android StudioによるAndroid勉強会資料(スライド)
初心者〜中級者 Android StudioによるAndroid勉強会資料(スライド)初心者〜中級者 Android StudioによるAndroid勉強会資料(スライド)
初心者〜中級者 Android StudioによるAndroid勉強会資料(スライド)Masafumi Terazono
 
夜子まま塾 2015年1月23日 進行用資料
夜子まま塾 2015年1月23日 進行用資料夜子まま塾 2015年1月23日 進行用資料
夜子まま塾 2015年1月23日 進行用資料Masafumi Terazono
 
セーラーソン振り返り
セーラーソン振り返りセーラーソン振り返り
セーラーソン振り返りMasafumi Terazono
 
関西Nfc lab勉強会 宣伝
関西Nfc lab勉強会 宣伝関西Nfc lab勉強会 宣伝
関西Nfc lab勉強会 宣伝Masafumi Terazono
 
関西支部 第二回 NFCLab勉強会 
関西支部 第二回 NFCLab勉強会 関西支部 第二回 NFCLab勉強会 
関西支部 第二回 NFCLab勉強会 Masafumi Terazono
 
日本Androidの会 中国支部資料
日本Androidの会 中国支部資料日本Androidの会 中国支部資料
日本Androidの会 中国支部資料Masafumi Terazono
 
Android+NFC 日本Androidの会神戸支部 勉強会
Android+NFC 日本Androidの会神戸支部 勉強会Android+NFC 日本Androidの会神戸支部 勉強会
Android+NFC 日本Androidの会神戸支部 勉強会Masafumi Terazono
 
関西支部Android勉強会(ロボットxnfc)
関西支部Android勉強会(ロボットxnfc)関西支部Android勉強会(ロボットxnfc)
関西支部Android勉強会(ロボットxnfc)Masafumi Terazono
 
夜子まま塾講義11(暗黙的intent)
夜子まま塾講義11(暗黙的intent)夜子まま塾講義11(暗黙的intent)
夜子まま塾講義11(暗黙的intent)Masafumi Terazono
 
夜子まま塾講義10(画面の呼び出し)
夜子まま塾講義10(画面の呼び出し)夜子まま塾講義10(画面の呼び出し)
夜子まま塾講義10(画面の呼び出し)Masafumi Terazono
 

Más de Masafumi Terazono (20)

初心者向けSpigot開発
初心者向けSpigot開発初心者向けSpigot開発
初心者向けSpigot開発
 
Minecraft dayの報告
Minecraft dayの報告Minecraft dayの報告
Minecraft dayの報告
 
BungeeCordeについて
BungeeCordeについてBungeeCordeについて
BungeeCordeについて
 
Spongeについて
SpongeについてSpongeについて
Spongeについて
 
Kobe.py 勉強会 minecraft piスライド
Kobe.py 勉強会 minecraft piスライドKobe.py 勉強会 minecraft piスライド
Kobe.py 勉強会 minecraft piスライド
 
Minecraftと連携するSlackちゃんという会話Botを作った話
Minecraftと連携するSlackちゃんという会話Botを作った話Minecraftと連携するSlackちゃんという会話Botを作った話
Minecraftと連携するSlackちゃんという会話Botを作った話
 
初心者〜中級者 Android StudioによるAndroid勉強会資料(スライド)
初心者〜中級者 Android StudioによるAndroid勉強会資料(スライド)初心者〜中級者 Android StudioによるAndroid勉強会資料(スライド)
初心者〜中級者 Android StudioによるAndroid勉強会資料(スライド)
 
夜子まま塾 2015年1月23日 進行用資料
夜子まま塾 2015年1月23日 進行用資料夜子まま塾 2015年1月23日 進行用資料
夜子まま塾 2015年1月23日 進行用資料
 
Thetalaps
ThetalapsThetalaps
Thetalaps
 
Android wear勉強会2
Android wear勉強会2Android wear勉強会2
Android wear勉強会2
 
夜子まま塾@鹿児島
夜子まま塾@鹿児島夜子まま塾@鹿児島
夜子まま塾@鹿児島
 
セーラーソン振り返り
セーラーソン振り返りセーラーソン振り返り
セーラーソン振り返り
 
関西Nfc lab勉強会 宣伝
関西Nfc lab勉強会 宣伝関西Nfc lab勉強会 宣伝
関西Nfc lab勉強会 宣伝
 
関西支部 第二回 NFCLab勉強会 
関西支部 第二回 NFCLab勉強会 関西支部 第二回 NFCLab勉強会 
関西支部 第二回 NFCLab勉強会 
 
日本Androidの会 中国支部資料
日本Androidの会 中国支部資料日本Androidの会 中国支部資料
日本Androidの会 中国支部資料
 
Android+NFC 日本Androidの会神戸支部 勉強会
Android+NFC 日本Androidの会神戸支部 勉強会Android+NFC 日本Androidの会神戸支部 勉強会
Android+NFC 日本Androidの会神戸支部 勉強会
 
関西支部Android勉強会(ロボットxnfc)
関西支部Android勉強会(ロボットxnfc)関西支部Android勉強会(ロボットxnfc)
関西支部Android勉強会(ロボットxnfc)
 
関西Unity勉強会
関西Unity勉強会関西Unity勉強会
関西Unity勉強会
 
夜子まま塾講義11(暗黙的intent)
夜子まま塾講義11(暗黙的intent)夜子まま塾講義11(暗黙的intent)
夜子まま塾講義11(暗黙的intent)
 
夜子まま塾講義10(画面の呼び出し)
夜子まま塾講義10(画面の呼び出し)夜子まま塾講義10(画面の呼び出し)
夜子まま塾講義10(画面の呼び出し)
 

Último

HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesBoston Institute of Analytics
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdflior mazor
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...Principled Technologies
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 

Último (20)

HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 

夜子まま塾Ecc