highlight the current months' days
This commit is contained in:
parent
3891f287ce
commit
4fb6e46bda
|
@ -33,7 +33,7 @@ public class MainActivity extends AppCompatActivity {
|
||||||
|
|
||||||
int cur = 0;
|
int cur = 0;
|
||||||
int thisMonthDays = 1;
|
int thisMonthDays = 1;
|
||||||
int nextMonth = 1;
|
int nextMonthsDay = 1;
|
||||||
|
|
||||||
for (int i = 0; i < 6; i++) {
|
for (int i = 0; i < 6; i++) {
|
||||||
final TableRow row = (TableRow) inflater.inflate(R.layout.table_row, tableHolder, false);
|
final TableRow row = (TableRow) inflater.inflate(R.layout.table_row, tableHolder, false);
|
||||||
|
@ -44,8 +44,9 @@ public class MainActivity extends AppCompatActivity {
|
||||||
currDate = prevMonthStart + cur;
|
currDate = prevMonthStart + cur;
|
||||||
} else if (currDate <= currMonthDays) {
|
} else if (currDate <= currMonthDays) {
|
||||||
thisMonthDays++;
|
thisMonthDays++;
|
||||||
|
day.setTextColor(getResources().getColor(R.color.darkGrey));
|
||||||
} else {
|
} else {
|
||||||
currDate = nextMonth++;
|
currDate = nextMonthsDay++;
|
||||||
}
|
}
|
||||||
|
|
||||||
day.setText(String.valueOf(currDate));
|
day.setText(String.valueOf(currDate));
|
||||||
|
|
|
@ -6,10 +6,20 @@
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
tools:context="calendar.simplemobiletools.com.MainActivity">
|
tools:context="calendar.simplemobiletools.com.MainActivity">
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/table_month"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_margin="@dimen/activity_margin"
|
||||||
|
android:gravity="center_horizontal"
|
||||||
|
android:textColor="@color/darkGrey"
|
||||||
|
android:textSize="24sp"/>
|
||||||
|
|
||||||
<TableLayout
|
<TableLayout
|
||||||
android:id="@+id/table_holder"
|
android:id="@+id/table_holder"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
|
android:layout_below="@+id/table_month"
|
||||||
android:gravity="center">
|
android:gravity="center">
|
||||||
|
|
||||||
</TableLayout>
|
</TableLayout>
|
||||||
|
|
|
@ -5,4 +5,6 @@
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:gravity="center"/>
|
android:gravity="center"
|
||||||
|
android:textColor="@color/lightGrey"
|
||||||
|
android:textSize="18sp"/>
|
||||||
|
|
|
@ -3,4 +3,7 @@
|
||||||
<color name="colorPrimary">#3F51B5</color>
|
<color name="colorPrimary">#3F51B5</color>
|
||||||
<color name="colorPrimaryDark">#303F9F</color>
|
<color name="colorPrimaryDark">#303F9F</color>
|
||||||
<color name="colorAccent">#FF4081</color>
|
<color name="colorAccent">#FF4081</color>
|
||||||
|
|
||||||
|
<color name="lightGrey">#ffdddddd</color>
|
||||||
|
<color name="darkGrey">#ff555555</color>
|
||||||
</resources>
|
</resources>
|
||||||
|
|
Loading…
Reference in New Issue