我想实现一个导航抽屉,但在我的 xml 文件中出现此错误:
错误:错误:不允许使用字符串类型(在“layout_gravity”处,值为“start”)。
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<!-- The main content view -->
<RelativeLayout
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".NeueNotizActivity" >
<EditText
android:id="@+id/editDocuTitleNewDocu"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:ems="10"
android:inputType="text"
android:hint="@string/Docu.title" >
<requestFocus />
</EditText>
<View
android:id="@+id/ViewColorPickerHelper"
android:layout_width="1dip"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="4dip"
android:layout_marginTop="410dip"
android:background="?android:attr/dividerVertical" />
<Button
android:id="@+id/btSaveNewDocu"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_toRightOf="@+id/btAbortNewDocu"
android:background="?android:attr/selectableItemBackground"
android:onClick="speichern"
android:text="@string/Docu.save"
android:drawableLeft="@android:drawable/ic_input_add" />
</RelativeLayout>
<!-- The navigation drawer -->
<ListView
android:id="@+id/drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="#F3F3F4"
android:choiceMode="singleChoice"
android:divider="@android:color/transparent"
android:dividerHeight="0dp" />
</android.support.v4.widget.DrawerLayout>
我希望你能帮忙。当我删除这个: android:layout_gravity="start" 然后菜单不起作用。