-
-
Notifications
You must be signed in to change notification settings - Fork 400
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Florent Champigny
committed
Apr 22, 2021
1 parent
6135efd
commit b8481cd
Showing
51 changed files
with
360 additions
and
467 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
62 changes: 0 additions & 62 deletions
62
app/src/main/java/com/github/florent37/shapeofview/sample/ShapeOfViewMainActivity.java
This file was deleted.
Oops, something went wrong.
4 changes: 3 additions & 1 deletion
4
...apeofview/sample/DottedEdgesActivity.java → ...apeofview/sample/DottedEdgesActivity.java
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
4 changes: 3 additions & 1 deletion
4
...7/shapeofview/sample/JackmanActivity.java → ...7/shapeofview/sample/JackmanActivity.java
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
2 changes: 1 addition & 1 deletion
2
...apeofview/sample/ListenableTabLayout.java → ...apeofview/sample/ListenableTabLayout.java
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
5 changes: 3 additions & 2 deletions
5
...ew/sample/ShapeOfViewAnimationActivity.kt → ...ew/sample/ShapeOfViewAnimationActivity.kt
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
42 changes: 42 additions & 0 deletions
42
app/src/main/java/io/github/florent37/shapeofview/sample/ShapeOfViewMainActivity.java
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,42 @@ | ||
package io.github.florent37.shapeofview.sample; | ||
|
||
import android.content.Intent; | ||
import android.os.Bundle; | ||
|
||
import androidx.appcompat.app.AppCompatActivity; | ||
|
||
public class ShapeOfViewMainActivity extends AppCompatActivity { | ||
@Override | ||
protected void onCreate(Bundle savedInstanceState) { | ||
super.onCreate(savedInstanceState); | ||
setContentView(R.layout.shape_of_view_activity_main); | ||
|
||
findViewById(R.id.anim).setOnClickListener(view -> { | ||
startActivity(new Intent(this, ShapeOfViewAnimationActivity.class)); | ||
}); | ||
findViewById(R.id.jackman).setOnClickListener(view -> { | ||
startActivity(new Intent(this, JackmanActivity.class)); | ||
}); | ||
findViewById(R.id.star).setOnClickListener(view -> { | ||
startActivity(new Intent(this, ShapeOfViewStarActivity.class)); | ||
}); | ||
findViewById(R.id.round).setOnClickListener(view -> { | ||
startActivity(new Intent(this, ShapeOfViewRoundActivity.class)); | ||
}); | ||
findViewById(R.id.star_wars).setOnClickListener(view -> { | ||
startActivity(new Intent(this, StarWarsActivity.class)); | ||
}); | ||
findViewById(R.id.star_wars_animated).setOnClickListener(view -> { | ||
startActivity(new Intent(this, ShapeOfViewStarAnimatedActivity.class)); | ||
}); | ||
findViewById(R.id.shrine).setOnClickListener(view -> { | ||
startActivity(new Intent(this, MaterialDesignShrineActivity.class)); | ||
}); | ||
findViewById(R.id.shapes).setOnClickListener(view -> { | ||
startActivity(new Intent(this, ShapeOfViewStarActivity.class)); | ||
}); | ||
findViewById(R.id.dottedEdges).setOnClickListener(view -> { | ||
startActivity(new Intent(this, DottedEdgesActivity.class)); | ||
}); | ||
} | ||
} |
4 changes: 3 additions & 1 deletion
4
...view/sample/ShapeOfViewRoundActivity.java → ...view/sample/ShapeOfViewRoundActivity.java
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
4 changes: 3 additions & 1 deletion
4
...fview/sample/ShapeOfViewStarActivity.java → ...fview/sample/ShapeOfViewStarActivity.java
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
6 changes: 3 additions & 3 deletions
6
...sample/ShapeOfViewStarAnimatedActivity.kt → ...sample/ShapeOfViewStarAnimatedActivity.kt
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
Oops, something went wrong.