It worked at background. so strange我尝试按住Ctrl +左键,但不能进入:
但在后台它会起作用
我尝试过无效数据并重启,无法正常工作 删除想法和.iml,不工作 取消检查省电模式,不起作用 我认为它可能会导致我的代码。太奇怪了
请帮助
我的英语很差。哈哈。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/left_drawer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="left"
android:layout_marginRight="30dp"
android:background="@color/white"
android:orientation="vertical"
xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="@color/colorPrimary"
android:orientation="vertical"
android:paddingLeft="20dp"
android:paddingTop="40dp">
<ImageView
android:id="@+id/drawer_head_img"
android:layout_width="60dp"
android:layout_height="60dp"
android:src="@drawable/photo" />
</LinearLayout>
<RadioGroup
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginTop="20dp"
android:layout_weight="3"
android:orientation="vertical">
<RadioButton
android:id="@+id/drawer_main"
style="@style/drawer_item"
android:checked="true"
android:drawableLeft="@drawable/drawer_item_icon1"
android:text="首页" />
<RadioButton
android:id="@+id/drawer_msg"
style="@style/drawer_item"
android:drawableLeft="@drawable/drawer_item_icon"
android:text="消息" />
<RadioButton
android:id="@+id/drawer_contact"
style="@style/drawer_item"
android:drawableLeft="@drawable/drawer_item_icon2"
android:text="联系人" />
<RadioButton
android:id="@+id/drawer_system"
style="@style/drawer_item"
android:drawableLeft="@drawable/drawer_item_icon6"
android:text="教务系统" />
<RadioButton
android:id="@+id/drawer_tools"
style="@style/drawer_item"
android:drawableLeft="@drawable/drawer_item_icon3"
android:text="更多功能" />
<RadioButton
android:id="@+id/drawer_about"
style="@style/drawer_item"
android:drawableLeft="@drawable/drawer_item_icon4"
android:text="关于" />
</RadioGroup>
<RadioButton
android:id="@+id/drawer_exit"
android:layout_width="match_parent"
android:layout_height="100dp"
android:background="@color/transparent"
android:button="@null"
android:drawableLeft="@drawable/selector_exit"
android:drawablePadding="15dp"
android:paddingLeft="18dp"
android:text="退出登录"
android:textColor="@color/selector_leftmenu_exit" />
</LinearLayout>
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:color="@color/colorPrimary"
android:state_checked="true"/>
<item android:color="@color/black_txt"/>
</selector>