Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- ethereum
- Gradle
- quick-start
- web3js
- fabric-sdk-java
- kotlin
- porterduff
- C
- error
- 컴파일
- vuepress
- hardwareacceleration
- Hyperledger
- Android
- log
- Glide
- bigquery
- 안드로이드
- fabic
- 스트리밍
- 다윈
- dataginding
- null safety
- LAYER_TYPE_SOFTWARE
- Realm
- firebase
- coroutines
- test
- convert
- Exception
Archives
- Today
- Total
날마다 새롭게 또 날마다 새롭게
Android Run Error - Layout Error 본문
1. layout.xml 아래와 같이 작성 후,
<SurfaceView
android:id="@+id/surface"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
2. Java코드에서 MyCameraSurface mSurface = (MyCameraSurface)findViewById(R.id.surface);라고 작성하면 error 발생 함.
문제점 : layout의 object와 MyCameraSurface Class가 맞지 않아서 발생한 error로 예상됨.
해결 : xml 파일 내용 수정으로 해결됨.
<com.example.smarttv.MyCameraSurface
android:id="@+id/preview"
android:layout_width="300dip"
android:layout_height="fill_parent"
/>
Comments