带 9 块补丁的 Bubble ListView

发布于 2024-11-05 21:04:06 字数 99 浏览 0 评论 0原文

我想为一个讨论论坛构建一个列表视图,看起来就像 iPhone 中的讨论(即:handcent 应用程序)。我看到了一些例子,但没有人使用 9 补丁。

有人有一些例子吗?

I would like to build a listview for a discussion forum that looks like as a discussion in the iphone (i.e.: the handcent app). I saw some examples but no one uses the 9-patch.

Does anyone have some examples?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

手心的温暖 2024-11-12 21:04:06

检查这个?
为什么9 块图形大小在模拟器中正确,但在手机上不正确?
这家伙在 9 补丁上得到了一个对话气泡的例子。你应该尝试使用 9 patch 工具,下次它肯定会很有用

check this?
Why do 9-patch graphics size correctly in the emulator but not on a phone?
this guy got an example of a speech bubble on 9 patch. you should try experimenting with the 9 patch tool it will surely deem to be useful next time

穿透光 2024-11-12 21:04:06

这是我的解决方案:
post_list_item_even.xml

<ImageView android:id="@+id/post_icon"
    android:gravity="center_horizontal|center_vertical"
    android:padding="15dip" android:layout_width="wrap_content"
    android:layout_height="fill_parent" android:layout_alignParentTop="true"
    android:layout_alignParentBottom="true" />

<TextView android:id="@+id/post_text"
    android:gravity="center_vertical" 
    android:layout_height="wrap_content" android:layout_width="fill_parent"
    android:layout_toRightOf="@id/post_icon" android:layout_alignParentBottom="true"
    android:layout_alignParentRight="true" android:background="@drawable/forum_bubble_even" />

post_list_item_odd.xml

<ImageView android:id="@+id/post_icon"
    android:gravity="center_horizontal|center_vertical"
    android:padding="15dip" android:layout_width="wrap_content"
    android:layout_height="fill_parent" android:layout_alignParentRight="true"
    android:layout_alignParentBottom="true" />

<TextView android:id="@+id/post_text"
    android:gravity="center_vertical" 
    android:layout_height="wrap_content" android:layout_width="fill_parent"
    android:layout_toLeftOf="@id/post_icon" android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true" android:background="@drawable/forum_bubble_odd" />

希望它会有用! :)

Here my soulution:
post_list_item_even.xml

<ImageView android:id="@+id/post_icon"
    android:gravity="center_horizontal|center_vertical"
    android:padding="15dip" android:layout_width="wrap_content"
    android:layout_height="fill_parent" android:layout_alignParentTop="true"
    android:layout_alignParentBottom="true" />

<TextView android:id="@+id/post_text"
    android:gravity="center_vertical" 
    android:layout_height="wrap_content" android:layout_width="fill_parent"
    android:layout_toRightOf="@id/post_icon" android:layout_alignParentBottom="true"
    android:layout_alignParentRight="true" android:background="@drawable/forum_bubble_even" />

post_list_item_odd.xml

<ImageView android:id="@+id/post_icon"
    android:gravity="center_horizontal|center_vertical"
    android:padding="15dip" android:layout_width="wrap_content"
    android:layout_height="fill_parent" android:layout_alignParentRight="true"
    android:layout_alignParentBottom="true" />

<TextView android:id="@+id/post_text"
    android:gravity="center_vertical" 
    android:layout_height="wrap_content" android:layout_width="fill_parent"
    android:layout_toLeftOf="@id/post_icon" android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true" android:background="@drawable/forum_bubble_odd" />

Hope it will be useful!! :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文