Merge pull request #183 from rICTx-T1D/rICTxT1D/Issue156
Fix for issue #156 (correct vertical alignment of label)
This commit is contained in:
commit
273b04f0e7
2 changed files with 8 additions and 7 deletions
|
@ -83,7 +83,8 @@
|
|||
|
||||
<TableRow
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
android:layout_height="match_parent"
|
||||
android:gravity="center_vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/profilehelper_age_label"
|
||||
|
@ -104,7 +105,8 @@
|
|||
<TableRow
|
||||
android:id="@+id/profilehelper_tdd_row"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
android:layout_height="match_parent"
|
||||
android:gravity="center_vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/profilehelper_tdd_label"
|
||||
|
@ -125,7 +127,8 @@
|
|||
<TableRow
|
||||
android:id="@+id/profilehelper_weight_row"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
android:layout_height="match_parent"
|
||||
android:gravity="center_vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/profilehelper_weigth_label"
|
||||
|
@ -146,7 +149,8 @@
|
|||
<TableRow
|
||||
android:id="@+id/profilehelper_basalpctfromtdd_row"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
android:layout_height="match_parent"
|
||||
android:gravity="center_vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/profilehelper_basalpctfromtdd_label"
|
||||
|
|
|
@ -25,9 +25,6 @@ import info.nightscout.androidaps.core.R;
|
|||
import info.nightscout.androidaps.utils.SafeParse;
|
||||
import info.nightscout.androidaps.utils.ToastUtils;
|
||||
|
||||
/**
|
||||
* Created by mike on 28.06.2016.
|
||||
*/
|
||||
public class NumberPicker extends LinearLayout implements View.OnKeyListener,
|
||||
View.OnTouchListener, View.OnClickListener {
|
||||
|
||||
|
|
Loading…
Reference in a new issue