gpt4 book ai didi

android - 如何在 android 中制作类似 google io 2014 应用程序的 ListView ?

转载 作者:行者123 更新时间:2023-11-29 16:01:14 26 4
gpt4 key购买 nike

我想创建一个包含图像和标题的 ListView 布局。我想要在 google io 2014 应用程序中使用类似 listview 的布局。它应该是一个带有一些颜色的平铺 ListView ,直到图像被加载,图像加载后它应该显示在 ListView 的上半部分,标题应该显示在下面带有一些背景颜色。我在此处附上了 google io 应用程序的屏幕截图。

enter image description here

更新:如果有人可以为这个 ListView 指出一些模板自定义布局,那将会很有帮助!

最佳答案

在单独的布局中创建一个包含所有需要的控件的自定义列表,并使用自定义适配器对其进行扩展您可以找到一个小示例 here

你可以创建一个像这样的自定义布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

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

<ImageView
android:id="@+id/imageView1"
android:layout_width="match_parent"
android:background="@drawable/images"
android:layout_height="match_parent"
/>

</LinearLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="#862c10">

<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@android:color/white"
android:textSize="15sp"
android:layout_marginLeft="10dip"
android:textStyle="bold"
android:text="HTML5 everywhere how and why android users use the webplatform" />

<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@android:color/white"
android:textSize="15sp"
android:layout_marginLeft="10dip"
android:layout_marginTop="10dip"
android:text="Wed 5 2001" />

<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@android:color/white"
android:textSize="15sp"
android:layout_marginLeft="10dip"
android:layout_marginTop="10dip"
android:text="Steven roberts and mark robinson " />

</LinearLayout>

</LinearLayout>

关于android - 如何在 android 中制作类似 google io 2014 应用程序的 ListView ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24527875/

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