DrawerLayout not working in 2.3 Device

前端 未结 2 1341
我在风中等你
我在风中等你 2021-01-05 04:32

Hello Friends i implement one Demo Applicaiton for DrawerLayout in All Android Device

MainClass as below :

import java.util.Locale;

import android.         


        
2条回答
  •  天命终不由人
    2021-01-05 04:50

    The problem lies in the drawer_list_item.xml. You will need to remove these 2 lines:

    android:background="?android:attr/activatedBackgroundIndicator"
    android:minHeight="?android:attr/listPreferredItemHeightSmall"
    

    Once those are removed it should work. Both of these items need later api versions to work correctly.

提交回复
热议问题