5

我有一个如图所示的布局:

布局

我希望用户能够向下拖动“显示详细信息...”部分以查看更多信息。我试过SlidingDrawer,但没有运气。是否有建议,例如一段代码或第三方组件可以解决问题?甚至是另一种适合直观显示更多信息的 UI 布局,不会过多地破坏用户体验。

这是我目前使用的 XML 布局,但它只是一个工作草案:

<?xml version="1.0" encoding="UTF-8"?>


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

  <fragment android:id="@+id/map"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:name="com.google.android.gms.maps.SupportMapFragment"/>


  <LinearLayout android:orientation="vertical" 
                android:layout_width="fill_parent" 
                android:layout_height="wrap_content" 
                android:layout_gravity="top"
                android:background="#A0000000">


    <TextView android:id="@+id/message_text_text"
              android:layout_height="wrap_content"
              android:layout_width="fill_parent"
              android:textColor="#FFFFFF"
              android:padding="10dip"
              android:textSize="13sp"/>



    <LinearLayout android:orientation="vertical" 
                  android:visibility="gone"
                  android:id="@+id/details"
                  android:layout_width="fill_parent" 
                  android:layout_height="wrap_content" 
                  android:layout_gravity="top"
                  android:padding="10dip">

      <ListView android:id="@+id/message_list_responses"
                android:layout_width="fill_parent"
                android:layout_marginTop="10dp"
                android:layout_marginLeft="30dp"
                android:layout_height="wrap_content" />  


    </LinearLayout>

    <TextView android:id="@+id/details_button"
              android:layout_height="wrap_content"
              android:layout_width="fill_parent"
              android:textColor="#FFFFFF"
              android:padding="5dip"
              android:onClick="onDetails"
              android:gravity="center"                
              android:clickable="true"
              android:background="#80000000"
              android:text="Show details..."
              android:textSize="11sp"/>
  </LinearLayout>


</FrameLayout>
4

1 回答 1

0

考虑使用来自 GitHub 的 SlidingMenu 库。它非常灵活,你可以用它做任何事情。您只需调用以下命令即可滑动操作栏:

setSlidingActionBarEnabled(true);

https://github.com/jfeinstein10/SlidingMenu

于 2013-10-03T13:07:09.127 回答