如何将ListView标题放入Android泡泡中

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何将ListView标题放入Android泡泡中相关的知识,希望对你有一定的参考价值。

我需要放置the date as the title of a Listviewinside a bubble,有人可以告诉我该怎么做。

这是放置date as a title:的代码

readFechaActual();
TextView textView = new TextView(context);
textView.setText(stringDate);
listView.addHeaderView(textView);

使用此代码,我得到了这个:

enter image description here

但我需要这样的标题:

enter image description here

这是创建气泡的文件:drawable/time_message.xml:

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@color/SALMON" />
<corners android:radius="20dp" />
答案

您可以创建这样的布局

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/round_corner_white"
  >


    <TextView
        android:id="@+id/tv_search_what"
        style="@style/gray_12_l"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
      />

</RelativeLayout>

将此布局对齐在中心

round_corner_white

<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="@color/white"/>
    <stroke android:width="0.5dp" android:color="@color/blue" />
    <corners android:radius="@dimen/_20sdp"/>
    <corners
        android:bottomLeftRadius="@dimen/_20sdp"
        android:bottomRightRadius="@dimen/_20sdp"
        android:topLeftRadius="@dimen/_20sdp"
        android:topRightRadius="@dimen/_20sdp" />
</shape>

以上是关于如何将ListView标题放入Android泡泡中的主要内容,如果未能解决你的问题,请参考以下文章

如何将listview和recyclerview放入linearlayout

Listview和复选框(如何放入数据库(sqlite))

Android如何在Dialog中适合listview

如何在 Android 中创建带圆角的 ListView?

如何在 Android Studio 中创建动态 ListView

如何将可扩展的 ListView 放入 ScrollView