-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#44 修复因为layout名字一样引起的一些闪退问题,现在都加了zjh以示区别
- Loading branch information
1 parent
a453ff7
commit c886016
Showing
82 changed files
with
234 additions
and
234 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<com.zhongjh.imageedit.view.ImageColorGroup xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:app="http://schemas.android.com/apk/res-auto" | ||
android:id="@+id/cg_colors" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_gravity="center_horizontal" | ||
android:checkedButton="@+id/cr_white" | ||
android:gravity="center" | ||
android:orientation="horizontal" | ||
android:padding="4dp"> | ||
|
||
<com.zhongjh.imageedit.view.ImageColorRadio | ||
android:id="@+id/cr_white" | ||
android:layout_width="@dimen/z_image_color" | ||
android:layout_height="@dimen/z_image_color" | ||
android:layout_margin="@dimen/z_image_color_margin" | ||
app:image_color="@color/z_image_color_white" /> | ||
|
||
<com.zhongjh.imageedit.view.ImageColorRadio | ||
android:layout_width="@dimen/z_image_color" | ||
android:layout_height="@dimen/z_image_color" | ||
android:layout_margin="@dimen/z_image_color_margin" | ||
app:image_color="@color/z_image_color_black" /> | ||
|
||
<com.zhongjh.imageedit.view.ImageColorRadio | ||
android:layout_width="@dimen/z_image_color" | ||
android:layout_height="@dimen/z_image_color" | ||
android:layout_margin="@dimen/z_image_color_margin" | ||
app:image_color="@color/z_image_color_red" /> | ||
|
||
<com.zhongjh.imageedit.view.ImageColorRadio | ||
android:layout_width="@dimen/z_image_color" | ||
android:layout_height="@dimen/z_image_color" | ||
android:layout_margin="@dimen/z_image_color_margin" | ||
app:image_color="@color/z_image_color_cyan" /> | ||
|
||
<com.zhongjh.imageedit.view.ImageColorRadio | ||
android:layout_width="@dimen/z_image_color" | ||
android:layout_height="@dimen/z_image_color" | ||
android:layout_margin="@dimen/z_image_color_margin" | ||
app:image_color="@color/z_image_color_yellow" /> | ||
|
||
<com.zhongjh.imageedit.view.ImageColorRadio | ||
android:layout_width="@dimen/z_image_color" | ||
android:layout_height="@dimen/z_image_color" | ||
android:layout_margin="@dimen/z_image_color_margin" | ||
app:image_color="@color/z_image_color_blue" /> | ||
|
||
</com.zhongjh.imageedit.view.ImageColorGroup> |
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
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,17 +1,17 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
<string name="image_doodle">涂鸦</string> | ||
<string name="image_text">文字</string> | ||
<string name="image_mosaic">马赛克</string> | ||
<string name="image_clip">裁剪</string> | ||
<string name="image_reset">还原</string> | ||
<string name="image_done">完成</string> | ||
<string name="image_cancel">取消</string> | ||
<string name="image_rotate">旋转</string> | ||
<string name="z_image_doodle">涂鸦</string> | ||
<string name="z_image_text">文字</string> | ||
<string name="z_image_mosaic">马赛克</string> | ||
<string name="z_image_clip">裁剪</string> | ||
<string name="z_image_reset">还原</string> | ||
<string name="z_image_done">完成</string> | ||
<string name="z_image_cancel">取消</string> | ||
<string name="z_image_rotate">旋转</string> | ||
|
||
<string name="image_mosaic_tip">请直接在图片上涂抹虚化</string> | ||
<string name="image_undo">撤销</string> | ||
<string name="image_all_photo">所有照片</string> | ||
<string name="image_original">原图</string> | ||
<string name="image_preview">预览</string> | ||
<string name="z_image_mosaic_tip">请直接在图片上涂抹虚化</string> | ||
<string name="z_image_undo">撤销</string> | ||
<string name="z_image_all_photo">所有照片</string> | ||
<string name="z_image_original">原图</string> | ||
<string name="z_image_preview">预览</string> | ||
</resources> |
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,7 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
|
||
<string name="image_enable_storage_permission">Enable storage permissions</string> | ||
<string name="image_enable_storage_tips">Album function needs to use the storage permissions, please in the Settings to enable the storage permissions of this application</string> | ||
<string name="z_image_enable_storage_permission">Enable storage permissions</string> | ||
<string name="z_image_enable_storage_tips">Album function needs to use the storage permissions, please in the Settings to enable the storage permissions of this application</string> | ||
|
||
</resources> |
Oops, something went wrong.