Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

text change of crop to save #843

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public void onViewCreated(View view, Bundle savedInstanceState) {

@Override
public boolean onOptionsItemSelected(MenuItem item) {
if (item.getItemId() == R.id.main_action_crop) {
if (item.getItemId() == R.id.main_action_save) {
mCropImageView.getCroppedImageAsync();
return true;
} else if (item.getItemId() == R.id.main_action_rotate) {
Expand Down
4 changes: 2 additions & 2 deletions sample/src/main/res/menu/main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
</item>

<item
android:id="@+id/main_action_crop"
android:title="@string/main_action_crop"
android:id="@+id/main_action_save"
android:title="@string/main_action_save"
app:showAsAction="always"/>

</menu>
1 change: 1 addition & 0 deletions sample/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,6 @@
<string name="drawer_option_toggle_multitouch">Multitouch: %1s</string>
<string name="drawer_option_toggle_show_overlay">Show Overlay: %1s</string>
<string name="drawer_option_toggle_show_progress_bar">Show Progress Bar: %1s</string>
<string name="main_action_save">SAVE</string>

</resources>