본문 바로가기

전체 글314

고려신용정보 분기배당 머선129 2021. 6. 10.
Android] 키보드 내리기 키보드 입력 완료 후 사용했습니다. val inputMethodManager = getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager inputMethodManager.hideSoftInputFromWindow(etKeyword.windowToken, 0) https://developer.android.com/reference/android/view/inputmethod/InputMethodManager InputMethodManager | Android 개발자 | Android Developers developer.android.com https://www.codota.com/code/java/methods/android.view.i.. 2021. 6. 9.
Android] Kotlin fragment에서 상태표시줄 보여지게 https://developer.android.com/reference/android/view/WindowInsetsController WindowInsetsController | Android 개발자 | Android Developers developer.android.com 상태표시줄 보이게 if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R){ controller = activity!!.window.insetsController if(controller != null){ controller!!.show(WindowInsets.Type.statusBars()) } }else{ activity!!.window.clearFlags(WindowManager.Layou.. 2021. 6. 8.
Kotlin] 안드로이드 Fragment findViewById Null [안드로이드] Fragment에서 findViewById 에러 해결 방법 Fragment에서 findViewById error Fragment에서 바인딩을 위해 findViewById() 함수를 사용한다면 다음과 같은 오류가 발생합니다. java.lang.NullPointerException: Attempt to invoke virtual method 'android.v.. swalloow.tistory.com override fun onCreateView( inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle? ): View? { val view = inflater.inflate(R.layout.fragment, cont.. 2021. 5. 22.
Kotlin] 안드로이드 국가별 시간, 날짜 표시 // getBestDateTimePattern Format DateTime in Android - AndroidWave In this tutorials, We explain How to Format DateTime in Android using SimpleDateFormat. Example Include - Format Date to Text and Parse Text to Date androidwave.com Codota Codota search - find any Java class or method www.codota.com val skeleton: String = DateFormat.getBestDateTimePattern(Locale.getDefault(), "MMMM d") val formatter = SimpleDateFormat(ske.. 2021. 5. 20.
Kotlin] 안드로이드 채팅방 날짜 표시 How do I display the calendar date on the top of chat messages? I am working on a chat application but I am struggling to figure out how to display the calendar date on the top of chat messages; for example, something like this: Another image with timestamps: ... stackoverflow.com 각 채팅 메세지에 대한 Adapter에 해당 코드를 넣어준다. override fun onBindViewHolder(holder: ViewHolder, position: Int) { holder.bind(ch.. 2021. 5. 1.