Browse Source

GUI Layouting (Main Options Menu)

master
gitsvn 12 years ago
parent
commit
2dbaad5395

+ 1
- 1
res/layout/rbs_spinner.xml View File

@@ -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"

+ 1
- 1
src/ch/spherIC/recurvebowsight/components/ArcerySetupArrayAdapter.java View File

@@ -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));

+ 1
- 1
src/ch/spherIC/recurvebowsight/model/Riser.java View File

@@ -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()) + "\"";
}
}

+ 1
- 1
src/ch/spherIC/recurvebowsight/model/Sight.java View File

@@ -173,7 +173,7 @@ public class Sight implements ISight {
if (this.id == -999) {
return getManufacturer();
}
return getManufacturer() + " " + getModel();
return getManufacturer() + " " + getModel();
}
}

Loading…
Cancel
Save