我想在我的xml文件中实现导航抽屉 我收到这个错误:
错误:错误:不允许使用字符串类型(在'layout_gravity'中包含值 '开始')。
<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”然后菜单不起作用。
答案 0 :(得分:3)
但是我只看到它用于从右到左阅读的语言时使用,否则使用左边如下:
android:layout_gravity="left"
希望有所帮助。
答案 1 :(得分:2)
无论您使用什么minSdkVersion(在AndroidManifest中),都可以使用Android 4编译您的项目。