2020.09.16 변경사항 추가 안드 프로그램 버전 3.2 이상, 빌드업 버전 28이상은 support.* 라이브러리가 androidX로 변경이되었다. 구글에서 android support design 검색 후 디자인 라이브러리를 찾아 복사한다. AndroidStudent로 돌아와 app > Gradle Scripts > build.gradle(Moudule:app) > dependencies에 복사해온 디자인 라이러리를 implementation 해준다. 그 후 Sync Now로 적용시켜준다. 이와같은 방법으로 추가가안된다면 아래와 같은 방법으로 추가해보세요. blue-ilike.tistory.com/entry/%EC%A7%80%EC%9B%90-%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%..
Text View 로 간단히 hello world 액티비티 띄워보기
fun main() { val hello1: String ="hello world" //final //값을 바꿀수없음 //상수 var hello2: String ="hello world" //int, string, float, double // String hello2 ="" ;랑 동일 var hello3: String? =null //null값 허용 // hello1="asd" //val 로 선언했기때문에 오류 hello2="asd" println(hello1) println(hello()) } fun hello():String{ //void return "hello fun" }
ListView는 보여질 데이터의 양이 리스트뷰 레이아웃 높이를 오버했을때 기본적으로 스크롤뷰가 적용됌 하지만 ScrollView내에 ListView를 적용하면 리스트뷰의 스크롤이 작동이 안되는데 ---------------------- listView.setOnTouchListener(new View.OnTouchListener() { @Override public boolean onTouch(View v, MotionEvent event) { scrollView.requestDisallowInterceptTouchEvent(true); return false; } }); --------------------- 를 소스에 작성해주면 해결
- 총 방문자
- 오늘 방문
- 어제 방문