프런트엔드4 연산자 == 와 === 차이 in javascript == 는 값만 비교하지만, === 는 타입까지 비교한다. 가능하면 === 와 !== 를 사용하자. ex) 1 == true : true 1 === true : false null == undefined : true null === undefined : false 단, NaN은 어느 값과도 일치하지 않는다. 그래서 isNaN() 를 사용해야 한다. NaN==NaN : false NaN === NaN : false 2020. 5. 5. Getting Unique Device ID of an Android Smartphone 참고 URL : http://technet.weblineindia.com/mobile/getting-unique-device-id-of-an-android-smartphone/http://stunstun.tistory.com/1841) The IMEI: (International Mobile Equipment Identity)Advantages of using IMEI as Device ID:The IMEI is unique for each and every device.It remains unique for the device even if the application is re-installed or if the device is rooted or factory reset.Disadvantages o.. 2015. 6. 22. 안드로이드 - Web Interface 연동 public class UserReportActivity extends BaseActivity { private Context mContext; private WebView webView; private LoadingAsyncTask lat; private CircleLoadingProgressDialog circleLoading; private boolean exitFlag = false; public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_PROGRESS); setContentView(R.layout.user_report_list); o.. 2013. 6. 27. ImageView src 와 background 차이 ImageView src 는 padding 이 적용되지만, background 는 안됨. background 는 ImageView 를 꽉 채우는 형식. 2013. 6. 19. 이전 1 다음 728x90