IT/android2017. 10. 14. 13:31
반응형

DELETE_FAILED_INTERNAL_ERROR

Error while Installing APKs



File > Settings > Build, Execution, Deployment > Instant Run > Uncheck : Enable Instant Run

반응형
Posted by Dream Come True
IT/android2017. 10. 9. 12:10
반응형


첫번째 방법 엑티비티 소스에 골라서 추가


setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);  //강제 가로

setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);  //강제 세로

setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_SENSOR); //센서대로



두번째 방법

androidmanifest.xml 수정 방법


android:screenOrientation="portrait"


android:screenOrientation="landscape"

반응형
Posted by Dream Come True
IT/android2017. 9. 7. 00:29
반응형
<ImageView
android:id="@+id/imageView"
android:layout_width="142dp"
android:layout_height="84dp"
android:baselineAlignBottom="true"
app:srcCompat="@drawable/icon"
tools:ignore="ContentDescription" />


반응형
Posted by Dream Come True
IT2017. 7. 27. 14:56
반응형


로또 번호 발생기 안드로이드 앱


https://play.google.com/store/apps/details?id=gotopark.com.LotGen




반응형

'IT' 카테고리의 다른 글

python gtts 사용 법  (0) 2020.11.21
lsof 사용법  (0) 2020.11.08
space engineer 스페이스 엔지니어  (0) 2016.01.27
세비지2 화이트 스크린 버그 해결  (0) 2015.08.02
리눅스 스팀 돌리기  (0) 2015.07.13
Posted by Dream Come True