TensorFlow Lite의 examples 중 image classification을 코드 분석(from scratch)🍼 이모티콘으로 제목에 표시🍼 01 Set up the app bar
App Bar를 구현하는 방법은 여러 방법이 있지만, ActionBar 대신 ToolBar를 사용하자. backward compatibility (work on the widest range of devices) customize app bar 1. AppCompat 의존성 추가 build.gradle에 을 추가해야 한다. (추가되어 있음) 2. Ap...
1. activity_main.xml activity_main.xml 완료 https://github.com/YeoulLee/tflite-start/blob/master/imageclassification/app/src/main/res/layout/activitymain.xml 2. ` tag 사용 Layout을 효과적으로 reuse하기 위해 includ...