diff --git a/Droid/qController.Droid.csproj b/Droid/qController.Droid.csproj
index 19c760b..5a99eb6 100644
--- a/Droid/qController.Droid.csproj
+++ b/Droid/qController.Droid.csproj
@@ -27,10 +27,6 @@
4
/Users/jwetzell/Dropbox/App Stuff/Android/keystores/android.keystore
x86;armeabi-v7a;arm64-v8a;x86_64
- false
- false
- false
- false
@@ -54,10 +50,6 @@
armeabi-v7a;x86;arm64-v8a;x86_64
- false
- false
- false
- false
diff --git a/qController.Standard/Classes/Cell/QInstanceCell.cs b/qController.Standard/Classes/Cell/QInstanceCell.cs
index 7fc8904..5d536cf 100644
--- a/qController.Standard/Classes/Cell/QInstanceCell.cs
+++ b/qController.Standard/Classes/Cell/QInstanceCell.cs
@@ -60,35 +60,43 @@ namespace qController
BorderColor = Color.Black,
VerticalOptions = LayoutOptions.CenterAndExpand,
HorizontalOptions = LayoutOptions.FillAndExpand,
- Padding = 30,
+ Padding = 0,
Margin = new Thickness(10,10,10,10),
CornerRadius=20,
BackgroundColor = Color.FromHex("D8D8D8")
};
View = f;
+
void InitItems()
{
+
nameLabel.HorizontalTextAlignment = TextAlignment.Center;
nameLabel.VerticalTextAlignment = TextAlignment.End;
nameLabel.FontAttributes = FontAttributes.Bold;
nameLabel.FontSize = App.HeightUnit * 3;
+ nameLabel.Margin = new Thickness(0, 20, 0, 0);
+ nameLabel.BackgroundColor = Color.IndianRed;
addressLabel.HorizontalTextAlignment = TextAlignment.Center;
addressLabel.VerticalTextAlignment = TextAlignment.Start;
addressLabel.FontSize = App.HeightUnit * 2.5;
+ addressLabel.Margin = new Thickness(0, 0, 0, 20);
+ addressLabel.BackgroundColor = Color.IndianRed;
- connectLabel.HorizontalOptions = LayoutOptions.CenterAndExpand;
+ connectLabel.HorizontalOptions = LayoutOptions.StartAndExpand;
connectLabel.VerticalOptions = LayoutOptions.CenterAndExpand;
connectLabel.Text = QIcon.WIFI;
- connectLabel.FontSize = App.HeightUnit * 6;
+ connectLabel.FontSize = App.HeightUnit * 5;
connectLabel.TextColor = Color.LimeGreen;
+ connectLabel.BackgroundColor = Color.IndianRed;
deleteLabel.HorizontalOptions = LayoutOptions.CenterAndExpand;
deleteLabel.VerticalOptions = LayoutOptions.CenterAndExpand;
deleteLabel.Text = QIcon.TRASH_EMPTY;
- deleteLabel.FontSize = App.HeightUnit * 6;
+ deleteLabel.FontSize = App.HeightUnit * 5;
deleteLabel.TextColor = Color.Red;
+ deleteLabel.BackgroundColor = Color.IndianRed;
connectLabel.FontFamily = App.QFont;
deleteLabel.FontFamily = App.QFont;