我有一個列表佈局與9patch .png用於每個項目 - 我有一個小的文本allignment問題在附圖中。listview項文本allignment
任何想法如何解決呢?
這裏是第一個條目佈局
<?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>
你想要什麼路線? – blessenm
你可以顯示佈局嗎?你想垂直居中文本嗎? – aromero
我想排列列表項中的文本......左邊的排列與第一個條目一樣檢查出我的編輯 – Yoav