У меня есть макет списка с 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>