| @@ -10,10 +10,10 @@ | |||
| android:id="@+id/spinner_view" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="wrap_content" | |||
| android:ellipsize="end" | |||
| android:gravity="bottom|left" | |||
| android:lines="1" | |||
| android:paddingLeft="2dp" | |||
| android:scrollHorizontally="true" | |||
| android:text="FontTextView" | |||
| android:textColor="@color/white" | |||
| android:textSize="18sp" | |||
| @@ -55,7 +55,7 @@ public class ArcerySetupArrayAdapter extends ArrayAdapter<IArcherySetup> { | |||
| if (getItem(position).getId() != -999) { | |||
| textViewMain.setText(getItem(position).getName()); | |||
| textViewSub.setText(getItem(position).getRiser().toString() + " / " + getItem(position).getSight().toString()); | |||
| textViewSub.setText(getItem(position).getRiser().toString() + " ● " + getItem(position).getSight().toString()); | |||
| } else { | |||
| textViewMain.setText("[ ]"); | |||
| textViewSub.setText(getContext().getString(R.string.caption_NoSelection)); | |||
| @@ -143,7 +143,7 @@ public class Riser implements IRiser { | |||
| if (this.id == -999) { | |||
| return getManufacturer(); | |||
| } | |||
| return getManufacturer() + " ● " + getModel() + " ● " + DF.format(getSize()) + "\""; | |||
| return getManufacturer() + " " + getModel() + " " + DF.format(getSize()) + "\""; | |||
| } | |||
| } | |||
| @@ -173,7 +173,7 @@ public class Sight implements ISight { | |||
| if (this.id == -999) { | |||
| return getManufacturer(); | |||
| } | |||
| return getManufacturer() + " ● " + getModel(); | |||
| return getManufacturer() + " " + getModel(); | |||
| } | |||
| } | |||