mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2025-03-30 01:13:32 -09:00
increased font size on portfolio screen
This commit is contained in:
parent
49aed67097
commit
be37ce7087
2 changed files with 2 additions and 0 deletions
MonoStockPortfolio/Activites/PortfolioScreen
|
@ -83,6 +83,7 @@ namespace MonoStockPortfolio.Activites.PortfolioScreen
|
|||
{
|
||||
var textItem = new TextView(this);
|
||||
textItem.Text = stockDataItem.GetStringValue();
|
||||
textItem.TextSize = 16.55F;
|
||||
textItem.SetWidth(cellwidth);
|
||||
textItem.SetTextColor(Resources.GetColor(Android.Resource.Color.Black));
|
||||
QuoteListviewHeader.AddView(textItem);
|
||||
|
|
|
@ -50,6 +50,7 @@ namespace MonoStockPortfolio.Activites.PortfolioScreen
|
|||
{
|
||||
var cell = new TextView(_context);
|
||||
cell.Text = item.Items[stockDataItem];
|
||||
cell.TextSize = 16.55F;
|
||||
cell.SetWidth(columnWidth);
|
||||
RedGreenHighlighting(cell, item.Items);
|
||||
row.Tag = item.PositionId;
|
||||
|
|
Loading…
Add table
Reference in a new issue