일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- TOSS
- 안드로이드
- 리브메이트
- spring게시판
- 오늘의퀴즈
- 행운퀴즈
- 비트코인
- 행퀴
- 캐시워크
- 자바
- 오퀴즈
- Android
- 토스정답
- 돈버는퀴즈
- 토스
- 캐웤
- 추천인
- 캐슬
- java
- 이벤트
- 캐시슬라이드
- 톹
- 초성퀴즈
- 캐시워크정답
- 오퀴즈정답
- ㄹㅂㅁㅇㅌ
- 정답
- 행운퀴즈정답
- 퀴즈
- 초성퀴즈정답
- Today
- 252,060
- Total
- 18,363,256
목록코딩(Coding) (45)
Gomdori
안녕하세요. 오늘은 Google Geocoder를 사용하여 위도(latitude) 경도(longitude)를 받아오는 예제를 해보겠습니다. 일단, Gradle에 아무런 Implementation을 안해주셔도 됩니다. public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate( savedInstanceState ); setContentView( R.layout.activity_main ); final Geocoder geocoder = new Geocoder( getApplicationContext() ); String value ..
안녕하세요. 안드로이드 BottomNavigationView 사용법에 대한 포스팅입니다. 보통 Fragment 변경 시 많이 사용하는 네비게이션바입니다. 1.Gradle 부분에 Implementation 은 아무것도 안해주셔도 됩니다. 2. Activity public class MainActivity extends AppCompatActivity{ @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView( R.layout.activity_main); BottomNavigationView bottomNavigationView = findViewById(R.id..
안녕하세요. 이번 포스팅은 Android Get_location에 대한 포스팅입니다. 위도와 경도 (Latitude,Longitude)를 얻어 올 수 있습니다. Manifests 부분에 권한설정을 해주셔야합니다. GpsTracker.java package gujc.directtalk9; import android.Manifest; import android.app.Service; import android.content.Context; import android.content.Intent; import android.content.pm.PackageManager; import android.location.Location; import android.location.LocationListener; imp..
Android Background Service(Thread) 설정해주기. 따로 gradle에 설정해줄 것이 하나 없이 코드만 입력해주시면 끝납니다! ServiceThread.java import android.os.Handler; public class ServiceThread extends Thread { Handler handler; boolean isRun = true; public ServiceThread(Handler handler) { this.handler = handler; } public void stopForever() { synchronized (this) { this.isRun = false; } } public void run() { //반복적으로 수행할 작업을 한다. while..
안녕하세요. Node js Error Page(에러 페이지) 설정해주는 방법에 대해 간략히 설명드리겠습니다. 저 같은 경우는 url mapping 안되는 것들은 모조리 Error page로 가게 설정해주었습니다 App.js app.all('*', (req, res, next) => { let data = { code: "4000", message: "URL 없음" } res.send(JSON.stringify(data)) }) 이 코드 한줄이면 Error Page 완성!~
프로젝트가 있는 디렉토리로 이동하기. 혹은 Project Terminal에서 작업하기. 초기설정 Git 아이디 이메일 설정하기 git config --global user.name "gitlab이름" git config --global user.email "gitlab이메일" Init git init Remote 생성하기 git remote add origin https://gitlab.com/~/~/@@@@.git 현재 디렉토리 add 및 Commit 해주기 git add . git commit - "commit message" 프로젝트 올리기 push git push -u origin master
AlertDialog.Builder builder = new AlertDialog.Builder(this); builder.setTitle("알림창 제목").setMessage("알림창 메시지"); AlertDialog alertDialog = builder.create(); alertDialog.show();
짧게 띄우기 Toast.makeText(this.getApplicationContext(),"띄울 메시지", Toast.LENGTH_SHORT).show(); 길게 띄우기 Toast.makeText(this.getApplicationContext(),"띄울 메시지", Toast.LENGTH_LONG).show();
To install them, you can run: npm install --save Axios core-js/modules/es.regexp.exec core-js/modules/es.string.replace vue js 를 하면서 빌드시 갑자기 이런 에러가 나온다면. import axios from 'axios' npm install --save core-js Terminal 창에 npm install --save core-js 해주면 정상적으로 빌드가 될겁니다!
Elements in iteration expect to have 'v-bind:key' directives vue/require-v-for-key vue js를 사용하다보면 v-for문을 해당 에러가 발생하는 경우가 있습니다. 해당 에러 해결방법은 정말 간단합니다.. span / li / div / 등등 태그 안에 v-bind:key 속성을 추가해줍니다. 끝!