我在第7行的活动中收到此错误,我不知道为什么请帮忙。 我想在底部添加滑动抽屉,以便我可以将其向上拖动以显示其他内容 就像当我展示一些团队信息时,我想将玩家从滑动抽屉拖到顶部
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@id/archivecontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/football_grass_text" />
<LinearLayout
android:id="@+id/archivecontainer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ImageView
android:id="@+id/showsinglearchive_imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:src="@drawable/ic_launcher" />
<TextView
android:id="@+id/showsinglearchive_textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Small Text"
android:textAppearance="?android:attr/textAppearanceSmall" />
<ImageView
android:id="@+id/showsinglearchive_imageButton1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/btn_table" />
<TextView
android:id="@+id/showsinglearchive_textview2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="10dp"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:paddingTop="10dp"
android:textAppearance="?android:attr/textAppearanceSmall" />
</LinearLayout>
</ScrollView><SlidingDrawer
android:id="@+id/drawer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:content="@+id/content"
android:handle="@+id/handle" >
<Button
android:id="@id/handle"
android:layout_width="88dip"
android:layout_height="44dip"
android:background="@drawable/ballbg"
android:text="help" />
<ScrollView
android:id="@id/content"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/football_grass_text" >
<LinearLayout
android:id="@+id/archivecontainer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
</LinearLayout>
</ScrollView>
</SlidingDrawer>
答案 0 :(得分:0)
首先,您关闭了启动滑动抽屉的主父滚动视图布局。这是你的第一个错误。 其次,如果您的活动出现错误,则应发布活动代码