«android-custom-attributes» 태그된 질문

5
사용자 정의보기를 위해 attrs.xml에서 동일한 이름의 속성
동일한 이름의 속성을 공유하는 몇 가지 사용자 정의보기를 작성하고 있습니다. 해당 <declare-styleable>섹션에서 attrs.xml속성에 동일한 이름을 사용하고 싶습니다. <?xml version="1.0" encoding="utf-8"?> <resources> <declare-styleable name="MyView1"> <attr name="myattr1" format="string" /> <attr name="myattr2" format="dimension" /> ... </declare-styleable> <declare-styleable name="MyView2"> <attr name="myattr1" format="string" /> <attr name="myattr2" format="dimension" /> ... </declare-styleable> </resources> 나는 그 말을하여 오류가 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.