ich slidinguppanel machte diesen Repository mit https://github.com/dlukashev/AndroidSlidingUpPanel-foursquare-map-demoSchiebetüren oben panel - dünne Linie Gleitpanel unter google MapFragment
Es ist jedoch einen Fehler enthält, die nicht überall bedeckt ist.
Wenn ich irgendwo berühre, um Panel zu erweitern (Listview) funktioniert gut, aber während ich versuche, es zu erweitern, indem Sie eine Spitze einer Listenansicht (blaue Linie auf screen2) Panel ausblenden unter der Karte (framelayout) (screen3)
Wie ist es überhaupt möglich, dass diese blaue Linie versteckt Panel unter Mapfragment und Rest der Listenansicht es gut erweitern?
Irgendwelche Ideen, warum? Bitte geben Sie mir nur einen Hinweis, wie Sie es beheben können?
Bitte schauen Sie auf dem Bildschirm:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<org.sothree.slidinguppanel.SlidingUpPanelLayout
android:id="@+id/slidingLayout"
android:gravity="bottom"
app:shadowHeight="0dp"
app:paralaxOffset="@dimen/paralax_offset"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<FrameLayout
android:gravity="top"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@+id/button">
<RelativeLayout
android:id="@+id/mapContainer"
android:layout_width="fill_parent"
android:layout_height="497dp"/>
</FrameLayout>
<RelativeLayout
android:id="@+id/slidingContainer"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@+id/button">
<View
android:id="@+id/transparentView"
android:visibility="gone"
android:layout_width="fill_parent"
android:layout_height="@dimen/map_height"
android:layout_alignParentTop="true"/>
<ListView
android:id="@+id/listView1"
android:cacheColorHint="@android:color/white"
android:drawSelectorOnTop="true"
android:dividerHeight="@dimen/divider_height"
android:divider="@android:color/darker_gray"
android:background="@android:color/transparent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@id/transparentView"
android:smoothScrollbar="true"
android:layout_marginTop="0dp"/>
</RelativeLayout>
</org.sothree.slidinguppanel.SlidingUpPanelLayout>
</RelativeLayout>
Genießen Können Sie Panel verstecken ??? – Asmi
Ich brauche etwas Hilfe .. Ich sah diesen Code, aber ich habe nicht das Rollfeld ausblenden .. Ich möchte, dass das Panel zu verstecken .. und wenn App ausgeführt wird es von unten zeigt nur eine Zeile Listview ?? – Asmi