gpt4 book ai didi

安卓滑动展开 View

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:27:41 26 4
gpt4 key购买 nike

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

Layout

我希望用户能够向下拖动“显示详细信息...”部分以查看更多信息。我尝试了 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>

最佳答案

考虑使用 GitHub 中的 SlidingMenu 库。它非常灵活,您可以用它做任何事情。您可以通过简单地调用来滑动操作栏:

setSlidingActionBarEnabled(true);

https://github.com/jfeinstein10/SlidingMenu

关于安卓滑动展开 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16120578/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com