gpt4 book ai didi

android - 如何从 GitHub 上打开的 Umano 应用程序中包含 SlidingUpPanel?

转载 作者:太空宇宙 更新时间:2023-11-03 12:55:46 25 4
gpt4 key购买 nike

我的应用程序中需要一个向上滑动面板,并在 GitHub 上找到了这个来自 Umando 应用程序的免费资源。 GitHub Sliding Up Paned Umano

但是因为我是 Android 的新手,特别是如何使用 GitHub 源代码,所以我不知道如何在我的应用程序中包含这个库或代码。

有没有人使用过这个向上滑动的面板?或者任何人都可以向我解释如何包含它吗?

最佳答案

首先,您必须将库项目下载到您的系统中。下载库项目后如果您想在项目中使用该控件,则必须在项目中添加该库项目。

添加库项目您的工作区中有导入库项目。导入后,您需要将其作为库添加到您的项目中。

要将项目作为库添加到您的项目中,请右键单击您的项目`Goto Properties>从左侧选择 Android 选项卡并在 api 级别下方的右侧选中,您将获得选项 Add.. >单击 Add.. 然后将显示库项目列表,然后从中选择您的库项目 > 应用。

查看下面的屏幕截图了解更多详情。

enter image description here

enter image description here

要使用布局,只需将 com.sothree.slidinguppaneldemo.SlidingUpPanelLayout 作为 Activity 布局中的根元素。确保它有两个 child 。第一个 child 是您的主要布局。第二个 child 是向上滑动面板的布局。两个 child 的宽度和高度都应设置为 match_parent

<com.sothree.slidinguppanel.SlidingUpPanelLayout
android:id="@+id/sliding_layout"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:text="Main Content"
android:textSize="16sp" />

<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center|top"
android:text="The Awesome Sliding Up Panel"
android:textSize="16sp" />
</com.sothree.slidinguppanel.SlidingUpPanelLayout>

关于android - 如何从 GitHub 上打开的 Umano 应用程序中包含 SlidingUpPanel?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20606421/

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