icon 3

Android - Toolbar icon 추가/생성하기

Android App을 보면 상단에 Toolbar를 흔히 볼수 있다. (간혹 없는 App들도 있지만 대체로 다 있다.) 그렇다면 저 bar에는 어떻게 icon을 추가하고 해당 icon에서 발생하는 touch event를 처리할 수 있을까? [Icon이 없는 Toolbar] [Icon을 생성한 Toolbar] 다른 여타 layout과 같이 xml 파일에 추가해 주면 된다. res\menu\main.xml Icon은 전 article에 포스팅한 방법으로 확보하였다. 해당 Icon을 클릭 하였을 때 event는 다음 코드에서 처리할 수 있다. public class MainActivity extends AppCompatActivity implements NavigationView.OnNavigationItem..

Android 2016.01.29

Android - 이미지 저장 및 변경 on Project.

Google의 Material Icon 을 download 받았다. 나같은 경우 Content - Add를 다운로드 받았는데, 다운로드 후 압축을 풀어보니 다음과 같은 내용물이 풀렸다. Material Design을 어디까지 지원할 의도인지는 모르겠으나, ios 용도 들어 있고, web 용도 들어 있다. 뭐 어쨌든 나의 경우는 Android App에 사용할 것이기 때문에 drawable-hdpi, drawable-mdpi, drawable-xhdpi, drawable-xxhdpi, drawable-xxxhdpi 폴더를 넣어야 한다. 하지만 기본 project 생성 후 res에 존재하는 drawable 관련 폴더는 drawable, drawable-v21밖에 없다. 그냥 위 폴더들을 app\src\main..

Android 2016.01.24

Android - Material Design of Google.

Material Design 에 대해 쉽게 설명해 놓은 페이지 (한글)http://blog.bsk.im/2015/08/18/introducing-android-design-support-library/ Material Design 사용시 사용할만한 Icon 다운로드 받을수 있는 페이지 (영문, Google)https://design.google.com/icons/ 사용관련해서 CC-BY license를 따른다고 한다.Feel free to use, remix, and re-share the icons in your products. The icons are available under the CC-BY license. We'd love attribution in your app's "about" scre..

Android 2016.01.24