Honeycomb Gallery 샘플 코드 ( 여기 )를보고 있으며 내 앱에 작업 항목을 추가하는 동안 다음 코드를 실행했습니다.
<item android:id="@+id/camera"
android:title="Camera"
android:icon="?attr/menuIconCamera"
android:showAsAction="ifRoom" />
은 ?attr
루프 날 던지고있다. 누군가 이것이 무엇을하는지 설명해 주시겠습니까? 이것은 드로어 블과 어떤 관련이 있습니까? Google에서 좋은 정보를 찾을 수없는 것 같습니다. 또한 아이콘 대신 사용할 수있는 속성 목록이나 갤러리가 menuIconCamera
있습니까?
감사
편집 : 나는 좀 더 둘러보고 attrs.xml이 다음과 같은 것을 발견했습니다.
<resources>
<declare-styleable name="AppTheme">
<attr name="listDragShadowBackground" format="reference" />
<attr name="menuIconCamera" format="reference" />
<attr name="menuIconToggle" format="reference" />
<attr name="menuIconShare" format="reference" />
</declare-styleable>
불행히도 그것은 나를 더욱 혼란스럽게 만듭니다. 이게 뭐하는거야?