Android:全面制作Listview

时间:2015-07-02 05:10:33

标签: android android-layout android-listview android-viewpager relativelayout

<LinearLayout 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:orientation="vertical"
 tools:context=".MainActivity">

<EditText
    android:layout_marginTop="5dp"
    android:layout_width="match_parent"
    android:layout_height="50dp"
    android:background="@drawable/location_edittext"
    android:id="@+id/locationEditext"
    android:textSize="15sp"
    android:textColor="#999"
    android:paddingLeft="15dp" />


<com.example.ravi_gupta.slider.ViewPagerCustomDuration
    android:layout_width="wrap_content"
    android:layout_height="0dp"
    android:id="@+id/viewPager"
    android:scrollbarStyle="outsideOverlay"
    android:layout_weight="0.5">
</com.example.ravi_gupta.slider.ViewPagerCustomDuration>

<ListView
    android:layout_weight="0.50"
    android:layout_below="@+id/viewPager"
    android:layout_marginTop="2dp"
    android:layout_width="match_parent"
    android:layout_height="45dp"
    android:id="@+id/shopListview" />

这是我在activity.main中的代码。我想要的是,当我滚动listview时,它会占用布局中隐藏viewpager和editext的所有空间,当我向后滚动它时显示它们两者,我不知道知道这是怎么可能的,要么我应该使用相对布局或其他方法

1 个答案:

答案 0 :(得分:1)

您不能简单地依赖布局。修改您的代码并查看setVisibility方法@ setVisibility of View。 例如,如果将该方法设置为GONE到EditText UI,那么该UI将完全隐藏,就好像它从未显示过一样。当然,您应该在适当时将其设置为VISIBLE