Skip to content

Commit 2584bef

Browse files
committed
Rename color activity
1 parent 737bc8c commit 2584bef

7 files changed

+4
-4
lines changed

app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
<activity android:name="info.appdev.chartexample.CandleStickChartActivity" />
4747
<activity android:name="info.appdev.chartexample.CubicLineChartActivity" />
4848
<activity android:name="info.appdev.chartexample.RadarChartActivity" />
49-
<activity android:name="info.appdev.chartexample.LineChartActivityColored" />
49+
<activity android:name="info.appdev.chartexample.LineChartColoredActivity" />
5050
<activity android:name="info.appdev.chartexample.DynamicalAddingActivity" />
5151
<activity android:name="info.appdev.chartexample.RealtimeLineChartActivity" />
5252
<activity android:name="info.appdev.chartexample.CombinedChartActivity" />

app/src/main/kotlin/info/appdev/chartexample/LineChartActivityColored.kt renamed to app/src/main/kotlin/info/appdev/chartexample/LineChartColoredActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import info.appdev.charting.data.EntryFloat
1515
import info.appdev.charting.data.LineData
1616
import info.appdev.charting.data.LineDataSet
1717

18-
class LineChartActivityColored : DemoBase() {
18+
class LineChartColoredActivity : DemoBase() {
1919
private val charts = mutableListOf<LineChart>()
2020

2121
private lateinit var binding: ActivityColoredLinesBinding

app/src/main/kotlin/info/appdev/chartexample/notimportant/MainActivity.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ import info.appdev.chartexample.HalfPieChartActivity
5757
import info.appdev.chartexample.HorizontalBarChartActivity
5858
import info.appdev.chartexample.InvertedLineChartActivity
5959
import info.appdev.chartexample.LineChartActivity
60-
import info.appdev.chartexample.LineChartActivityColored
60+
import info.appdev.chartexample.LineChartColoredActivity
6161
import info.appdev.chartexample.LineChartDualAxisActivity
6262
import info.appdev.chartexample.LineChartTimeActivity
6363
import info.appdev.chartexample.ListViewBarChartActivity
@@ -165,7 +165,7 @@ class MainActivity : ComponentActivity() {
165165
add(ContentItem("Dual Axis", "Line chart with dual y-axes.", LineChartDualAxisActivity::class.java))
166166
add(ContentItem("Inverted Axis", "Inverted y-axis.", InvertedLineChartActivity::class.java))
167167
add(ContentItem("Cubic", "Line chart with a cubic line shape.", CubicLineChartActivity::class.java))
168-
add(ContentItem("Colorful", "Colorful line chart.", LineChartActivityColored::class.java))
168+
add(ContentItem("Colorful", "Colorful line chart.", LineChartColoredActivity::class.java))
169169
add(ContentItem("Performance", "Render 30.000 data points smoothly.", PerformanceLineChart::class.java))
170170
add(ContentItem("Filled", "Colored area between two lines.", FilledLineActivity::class.java))
171171

screenshotsToCompare9/StartTest_smokeTestStart-6-LineChartActivityColored-Colorful-1SampleClick.png renamed to screenshotsToCompare9/StartTest_smokeTestStart-6-LineChartColoredActivity-Colorful-1SampleClick.png

File renamed without changes.

screenshotsToCompare9/StartTest_smokeTestStart-6-LineChartActivityColored-Colorful-click.png renamed to screenshotsToCompare9/StartTest_smokeTestStart-6-LineChartColoredActivity-Colorful-click.png

File renamed without changes.

screenshotsToCompare9/StartTest_smokeTestStart-6-LineChartActivityColored-Colorful-click2020.png renamed to screenshotsToCompare9/StartTest_smokeTestStart-6-LineChartColoredActivity-Colorful-click2020.png

File renamed without changes.

screenshotsToCompare9/StartTest_smokeTestStart-6-LineChartActivityColored-Colorful-click7070.png renamed to screenshotsToCompare9/StartTest_smokeTestStart-6-LineChartColoredActivity-Colorful-click7070.png

File renamed without changes.

0 commit comments

Comments
 (0)