在同一活动中使用抽屉布局和滚动视图

时间:2013-08-02 07:34:44

标签: android scrollview drawerlayout

我正在尝试使用无法放入屏幕的TextView显示大块文本。我尝试用ScrollView包围这个视图,并在隔离使用时找到它。当我尝试添加DrawerLayout时,滚动操作不再起作用(但DrawerLayout会这样做)。我猜这是因为DrawerLayouts要求使用FrameLayout。下面是我正在使用的xml代码。大多数代码都遵循http://developer.android.com/training/implementing-navigation/nav-drawer.html

上的drawerlayout的Google教程
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/black" 
>    

  <TextView
    android:id="@+id/city_title"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:textStyle="bold"
    android:textAppearance="?android:attr/textAppearanceLarge" 
    android:textColor="@color/white"
    />

   <ScrollView 
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:fillViewport="true"
    android:layout_below="@+id/city_title">    
        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical" >
                <TextView
                    android:id="@+id/city_details"
                    android:layout_width="fill_parent"
                    android:layout_height="0dp"
                    android:layout_weight="1.0"
                    android:textAppearance="?android:attr/textAppearanceMedium" 
                    android:textColor="@color/white"/> 
        </LinearLayout>
  </ScrollView>

<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">


   <FrameLayout
       android:id="@+id/content_frame"
       android:layout_width="match_parent"
       android:layout_height="match_parent" />


    <ListView android:id="@+id/left_drawer"
        android:layout_width="240dp"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:choiceMode="singleChoice"
        android:divider="@android:color/transparent"
        android:dividerHeight="0dp"
        android:background="#111"/>

</android.support.v4.widget.DrawerLayout>

非常感谢任何提示或建议。

1 个答案:

答案 0 :(得分:0)

我通过创建一个侦听向下手势的手势监听器来部分解决了我的问题。它主要解决了这个问题,除了我现在需要处理生涩的滚动。