在android中使用slidepanel时无法滑动页面

时间:2014-06-10 09:51:51

标签: android android-listview custom-controls

现在我正在尝试在android中的幻灯片面板布局中使用自定义列表视图。我的问题是我无法刷定具有自定义列表视图的页面,但如果它没有该列表 - 查看它工作正常。任何人都可以告诉我如何解决这个问题? 建议请。

感谢您宝贵的时间!

Fragment_layout.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@android:color/white" >

<ListView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" 
        android:id="@+id/fragment_listview_listview"
        android:layout_marginTop="10dp" 
        android:layout_marginBottom="10dp"
        android:dividerHeight="5dp"
        android:background="@android:color/white"
        android:divider="@android:color/transparent"
    >

    </ListView>


    <ProgressBar
               android:id="@+id/progressbar_control"
               style="?android:attr/progressBarStyleInverse"
               android:layout_width="40dp"
               android:layout_height="40dp"
               android:layout_centerHorizontal="true"
               android:layout_centerVertical="true" 
               android:visibility="gone"
               /> 
    </RelativeLayout> 

child_fragment_layout.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@color/white" >

<View android:layout_width="fill_parent"
            android:layout_height="1dp"
            android:background="#A54399"/>

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="125dp"
    android:gravity="center" >

    <ImageView
        android:id="@+id/img_default"
        android:layout_width="115dp"
        android:layout_height="115dp"
        android:layout_marginLeft="2dp"
        android:layout_marginRight="2dp"
        android:visibility="visible" />

    <View
        android:layout_width="1dp"
        android:layout_height="wrap_content"
        android:background="#A54399" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="top"
        android:layout_marginBottom="5dp"
        android:layout_marginLeft="5dp"
        android:layout_marginRight="1dp"
        android:layout_marginTop="3dp"
        android:layout_weight="0.95"
        android:orientation="vertical" >

        <TextView
            android:id="@+id/txtvw_title"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginBottom="5dp"
            android:layout_marginTop="5dp"
            android:text=""
            android:textColor="#000000"
            android:textSize="12dp"
            android:textStyle="bold" />

        <TextView
            android:id="@+id/txtvw_desc"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginBottom="2dp"
            android:layout_marginRight="1dp"
            android:text=""
            android:textColor="#000000"
            android:textSize="12dp" />
    </LinearLayout>
</LinearLayout>

<View android:layout_width="fill_parent"
            android:layout_height="1dp"
            android:background="#A54399"/>

</LinearLayout>

0 个答案:

没有答案