반응형
RemoteView을 사용할 때 위젯과 뷰그룹 제한이 있다는 것을 이번에 알았다.
기존 LinearLayout을 ConstraintLayout으로 변경했다가 30분 동안 삽질했음..
RemoteViews에서 지원하는 뷰와 위젯들이다.
A class that describes a view hierarchy that can be displayed in another process. The hierarchy is inflated from a layout resource file, and this class provides some basic operations for modifying the content of the inflated hierarchy.
RemoteViews is limited to support for the following layouts:
- AdapterViewFlipper
- FrameLayout
- GridLayout
- GridView
- LinearLayout
- ListView
- RelativeLayout
- StackView
- ViewFlipper
And the following widgets:
Descendants of these classes are not supported.
반응형
'OS > Android' 카테고리의 다른 글
Android SHA1 Debug (0) | 2020.12.02 |
---|---|
Android 키보드 보일 때 reclyclerView 마지막 아이템으로 스크롤 이동 (0) | 2020.11.30 |
Android ConstraintLayout ImageView 맨 앞으로 위치 변경하기 (0) | 2020.11.23 |
Android JitPack 배포하기 (0) | 2020.11.20 |
AudioRecord to Wav 저장용 (0) | 2020.11.05 |