列表视图项目文本对齐

发布于 2024-12-07 09:11:33 字数 1297 浏览 1 评论 0原文

我有一个列表布局,每个项目都使用 9patch .png - 我有一个小的文本对齐问题,如附图所示。

有什么想法如何解决吗?

这是第一个条目布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" 
        android:background="@drawable/list_up" >
    <TextView
        android:id="@+id/listUp_RecipeIngredientNameTextBoxId"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="14dip" />

</LinearLayout>

这是第二个条目布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" 
        android:background="@drawable/list_middle" >
    <TextView
        android:id="@+id/listMiddle_RecipeIngredientNameTextBoxId"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="14dip" />

</LinearLayout>

在此处输入图像描述

I have a list layout with 9patch .png used for each item - I have a small text allignment issue as in the attached pic.

Any ideas how to solve it?

Here is the first entry layout

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" 
        android:background="@drawable/list_up" >
    <TextView
        android:id="@+id/listUp_RecipeIngredientNameTextBoxId"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="14dip" />

</LinearLayout>

Here is the 2nd entry layout

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" 
        android:background="@drawable/list_middle" >
    <TextView
        android:id="@+id/listMiddle_RecipeIngredientNameTextBoxId"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="14dip" />

</LinearLayout>

enter image description here

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

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

发布评论

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

评论(1

独守阴晴ぅ圆缺 2024-12-14 09:11:33

假设 list_middle 和 list_up 是 9patch 可绘制对象,差异应该在于 9patch 图像中指定的“填充”。您可以解决此问题,使两个 9patch 在边框中具有相同数量的像素(即 9patch 的“左”部分的宽度和 9patch 的“顶部”部分的高度)。

Assuming list_middle and list_up are 9patch drawables, the difference should be in the "padding" specified in the 9patch images. You can solve this making both 9patch have the same amount of pixels in the borders (ie the width of the "left" part of the 9patch and the height of the "top" part of the 9patch).

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