2016-01-09 5 views
0

Хорошо, у меня есть listView, который не прокручивается. Я попробовал все, что было спрошено на SO.Android ListView не прокручивается. Пробовал все

1- У меня есть достаточно элементов в списке, чтобы сделать его прокручиваемым.

2- Он не находится в ScrollView.

3- я попытался изменить его высоты к wrap_content и match_parent

4- У меня есть изображение в ListView Я поставил фокусируемый ложным. Пробовал все. Мне хочется сдаться. Это мой fragment_list.xml

<?xml version="1.0" encoding="utf-8"?> 
<ListView xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:tools="http://schemas.android.com/tools" 
android:id="@+id/contacts" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:layout_marginLeft="16dp" 
android:layout_marginRight="16dp" 
android:scrollbars="vertical" 
android:focusable="true" 
tools:listitem="@layout/fragment_contacts" /> 

и это fragment_contacts.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:orientation="horizontal" 
> 

<ImageView 
    android:id="@+id/image" 
    android:layout_width="60dp" 
    android:layout_height="60dp" 
    android:contentDescription="@string/Description" 
    android:focusable="false"/> 

<LinearLayout 
    android:layout_width="fill_parent" 
    android:layout_height="60dp" 
    android:orientation="vertical" > 

    <TextView 
     android:id="@+id/name" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:gravity="bottom" 
     android:textAppearance="?android:attr/textAppearanceMedium" 
     android:textSize="16sp" 
     android:textStyle="bold" 
     android:layout_marginLeft="14dp"/> 

    <TextView 
     android:id="@+id/phone" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:gravity="top" 
     android:textSize="14sp" 
     android:layout_marginTop="15dp" 
     android:layout_marginLeft="14dp" /> 
</LinearLayout> 

Теперь я собираюсь дать дополнительную информацию, если есть проблема. У меня есть main.xml, в котором есть пейджер.

<android.support.design.widget.CoordinatorLayout   xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:app="http://schemas.android.com/apk/res-auto" 
xmlns:tools="http://schemas.android.com/tools" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:fitsSystemWindows="true" 
tools:context="context"> 

<android.support.design.widget.AppBarLayout 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:theme="@style/AppTheme.AppBarOverlay"> 

    <android.support.v7.widget.Toolbar 
     android:id="@+id/toolbar" 
     android:layout_width="match_parent" 
     android:layout_height="?attr/actionBarSize" 
     /> 


    <android.support.design.widget.TabLayout 
     android:id="@+id/tabs" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     app:tabMode="fixed" 
     app:tabGravity="fill" 

     /> 
    <android.support.v4.view.ViewPager 
     xmlns:android="http://schemas.android.com/apk/res/android" 
     android:id="@+id/pager" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:background="@color/backscreen3" 
     /> 


</android.support.design.widget.AppBarLayout> 

<include layout="@layout/content_main" /> 

<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:paddingBottom="@dimen/activity_vertical_margin" 
android:paddingLeft="@dimen/activity_horizontal_margin" 
android:paddingRight="@dimen/activity_horizontal_margin" 
android:paddingTop="@dimen/activity_vertical_margin" 
tools:context="context" 
tools:showIn="@layout/activity_main" 
> 

Пожалуйста, помогите мне решить эту проблему.

+1

использование recycleview InstEd из ListView при использовании CoordinatorLayout –

+0

я думаю, что это последний вариант у меня есть ??? –

+0

Вы использовали listview внутри ScrollView? – sasikumar

ответ

0

Поместите ListView внутри RelativeLayout как этот

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

<ListView 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@+id/listview" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"/> 

0

Установите это свойство в вашей ListView

<ListView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:focusable="false" 
     android:focusableInTouchMode="false" 
     android:dividerHeight="0dp" 
     android:listSelector="@android:color/transparent">