gpt4 book ai didi

android - 同一个 Scroll View 中的 Image 和 ExpandableListView

转载 作者:太空狗 更新时间:2023-10-29 12:41:30 24 4
gpt4 key购买 nike

我有一个包含标题、图像和 ExpandableListView 的布局。我的问题是,虽然标题不必滚动,但我希望图像和 ExpandaleListView 成为一个可以滚动的独特 block 。

直到现在,除非添加高度值,否则我看不到 ExpandibleListView。

这是我的布局代码:

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

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

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="@string/title"/>

</LinearLayout>

<ScrollView
android:layout_width="match_parent"
android:layout_height="fill_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:orientation="vertical">

<LinearLayout
android:id="@+id/userContent"
android:layout_width="match_parent"
android:layout_height="175dp"
android:background="@color/black"
android:gravity="center_vertical">

<RelativeLayout
android:id="@+id/userDrawer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/transparent" >

<ImageView
android:id="@+id/ImgDrawer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:contentDescription="@string/app_name"
android:scaleType="centerCrop"
android:src="@drawable/ic_user" />

</RelativeLayout>
</LinearLayout>

<ExpandableListView
android:id="@+id/lvExp"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:focusable="false"/>

</LinearLayout>
</ScrollView>
</LinearLayout>

最佳答案

解决了将图像放入名为“header”的布局,然后将此代码放入 Activity 中的问题:

final ExpandableListView elv = (ExpandableListView) v.findViewById(R.id.lvExp);
View header = inflater.inflate(R.layout.header, null);
elv.addHeaderView(header);

关于android - 同一个 Scroll View 中的 Image 和 ExpandableListView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24987251/

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