<!-- Defines the relationship between the ViewGroup and its descendants
             when looking for a View to take focus. -->
        <attr name="descendantFocusability">
            <!-- The ViewGroup will get focus before any of its descendants. -->
            <enum name="beforeDescendants" value="0" />
            <!-- The ViewGroup will get focus only if none of its descendants want it. -->
            <enum name="afterDescendants" value="1" />
            <!-- The ViewGroup will block its descendants from receiving focus. -->
            <enum name="blocksDescendants" value="2" />
        </attr>

 

相关文章:

  • 2021-08-17
  • 2021-11-13
  • 2022-03-10
  • 2022-01-25
  • 2022-12-23
  • 2021-12-29
  • 2022-03-06
  • 2022-12-23
猜你喜欢
  • 2021-09-28
  • 2021-11-22
  • 2021-08-01
  • 2022-12-23
  • 2022-12-23
  • 2021-06-08
  • 2021-05-30
相关资源
相似解决方案