列表视图项目文本对齐
我有一个列表布局,每个项目都使用 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>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设 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).