This repository was archived by the owner on Jul 27, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
image-editor-ui/app/src/main
java/com/adobe/imageeditorui Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 10
10
import android .view .Menu ;
11
11
import android .view .MenuItem ;
12
12
import android .view .View ;
13
+ import android .widget .ImageView ;
13
14
14
15
import com .adobe .creativesdk .aviary .AdobeImageIntent ;
15
16
16
17
public class MainActivity extends AppCompatActivity {
17
18
19
+ private ImageView mEditedImageView ;
20
+
18
21
@ Override
19
22
protected void onCreate (Bundle savedInstanceState ) {
20
23
super .onCreate (savedInstanceState );
21
24
setContentView (R .layout .activity_main );
22
25
Toolbar toolbar = (Toolbar ) findViewById (R .id .toolbar );
23
26
setSupportActionBar (toolbar );
24
27
28
+ mEditedImageView = (ImageView ) findViewById (R .id .editedImageView );
29
+
25
30
/* 1) Make a new Uri object (Replace this with a real image on your device) */
26
31
Uri imageUri = Uri .parse ("content://media/external/images/media/1248" );
27
32
Original file line number Diff line number Diff line change 19
19
android : adjustViewBounds =" true"
20
20
android : layout_centerHorizontal =" true"
21
21
android : layout_centerVertical =" true" />
22
-
22
+
23
23
</RelativeLayout >
You can’t perform that action at this time.
0 commit comments