-
-
Notifications
You must be signed in to change notification settings - Fork 9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improvements in the example project.
- Loading branch information
Showing
20 changed files
with
294 additions
and
228 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<translate | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:duration="300" | ||
android:fromXDelta="-100%p" | ||
android:toXDelta="0%p"> | ||
</translate> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<translate | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:duration="300" | ||
android:fromXDelta="0%p" | ||
android:toXDelta="-100%p"> | ||
</translate> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<translate | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:duration="300" | ||
android:fromXDelta="100%p" | ||
android:toXDelta="0%p"> | ||
</translate> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<translate | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:duration="300" | ||
android:fromXDelta="0%p" | ||
android:toXDelta="100%p"> | ||
</translate> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,76 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
<ListView xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:id="@+id/listView1" | ||
android:layout_width="fill_parent" | ||
android:layout_height="fill_parent" > | ||
|
||
<ScrollView | ||
android:id="@+id/scrollView1" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" > | ||
|
||
<LinearLayout | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:orientation="vertical" | ||
android:padding="10dp" > | ||
|
||
<Button | ||
android:id="@+id/button1" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_margin="4dp" | ||
android:text="LineChart" /> | ||
|
||
<Button | ||
android:id="@+id/button2" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_margin="4dp" | ||
android:text="BarChart" /> | ||
|
||
<Button | ||
android:id="@+id/button3" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_margin="4dp" | ||
android:text="PieChart" /> | ||
|
||
<Button | ||
android:id="@+id/button6" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_margin="4dp" | ||
android:text="ScatterChart" /> | ||
|
||
<Button | ||
android:id="@+id/button4" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_margin="4dp" | ||
android:text="LineChart (more datasets)" /> | ||
|
||
<Button | ||
android:id="@+id/button5" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_margin="4dp" | ||
android:text="BarChart (more datasets)" /> | ||
|
||
<Button | ||
android:id="@+id/button7" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_margin="4dp" | ||
android:text="Draw Chart" /> | ||
|
||
<Button | ||
android:id="@+id/button8" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_margin="4dp" | ||
android:text="AWESOME DESIGN" /> | ||
|
||
</LinearLayout> | ||
</ScrollView> | ||
|
||
</RelativeLayout> | ||
</ListView> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:padding="8dp" > | ||
|
||
<TextView | ||
android:id="@+id/tvName" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_alignParentLeft="true" | ||
android:layout_alignParentTop="true" | ||
android:layout_marginLeft="4dp" | ||
android:text="Medium Text" | ||
android:textSize="16dp"/> | ||
|
||
<TextView | ||
android:id="@+id/tvDesc" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_alignLeft="@+id/tvName" | ||
android:layout_below="@+id/tvName" | ||
android:layout_marginTop="3dp" | ||
android:text="Small Text" | ||
android:textSize="12dp" /> | ||
|
||
</RelativeLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
117 changes: 0 additions & 117 deletions
117
MPChartExample/src/com/xxmassdeveloper/mpchartexample/MainActivity.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.