gpt4 book ai didi

android - 可以在 ExpandableListView 下放置一些东西吗?

转载 作者:行者123 更新时间:2023-11-29 18:21:48 25 4
gpt4 key购买 nike

我无法创建我将拥有的布局

<LinearLayout>
<TextView/>
<ExpandableListView/>
<Button/>
</LinearLayout>

通常我无法在 ExpandableListView 下使用小部件构建布局,这可能吗?

[编辑]

现在我有另一个问题。目前我有这样的东西:

---------------------
| some text which |
| could be dragable |
|-------------------|
|ExpandableList [|]|
| - item1 | |
| - item2 | |
| - item3 | |
| - item4 | |
| - item5 | |
|-------------------|
| [button] [button] |
---------------------

我可以滚动我的可扩展 ListView

---------------------
| some text which |
| could be dragable |
|-------------------|
| - item4 | |
| - item5 | |
| - item6 | |
| - item7 | |
| - item8 | |
| - item9 [|]|
|-------------------|
| [button] [button] |
---------------------

但在横向

------------------------------|
| some text which could be |
| dragable |
|-----------------------------|
|-----------------------------|
| [button][button] |
-------------------------------

我没有可扩展 ListView 的地方。我应该怎么做才能获得完全可滚动的结果?

最佳答案

is it possible?

是的,我们可以将任何小部件(按钮或 TextView )放在可扩展 ListView 的上方或下方。

最好发布您用于创建布局的代码。所以我们会很容易地知道确切的问题。

例如:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content">

<ExpandableListView
android:id="@+id/expandableListView1"
android:layout_height="wrap_content"
android:layout_width="fill_parent">
</ExpandableListView>

<Button
android:text="Button" android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</Button>

</LinearLayout>

关于android - 可以在 ExpandableListView 下放置一些东西吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4990513/

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