我想为一个看起来像 iphone 中的讨论的讨论论坛构建一个列表视图(即:handcent 应用程序)。我看到了一些例子,但没有人使用 9-patch。
有没有人有一些例子?
我想为一个看起来像 iphone 中的讨论的讨论论坛构建一个列表视图(即:handcent 应用程序)。我看到了一些例子,但没有人使用 9-patch。
有没有人有一些例子?
检查这个? 为什么 9-patch 图形大小在模拟器中正确,但在手机上却不行? 这家伙在 9 补丁上有一个讲话泡泡的例子。您应该尝试使用 9 补丁工具,它肯定会认为下次有用
这是我的解决方案: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" />
希望会有用!!:)