CaptureView - 选区视图

CaptureView

Draw rectangle to select specific area.

sample

Features

  • Select specific area.

Screenshot

Screenshot

Import

Gradle
1
compile 'me.next.captureview:captureview:1.0.1'
Maven
1
2
3
4
5
6
<dependency>
<groupId>me.next.captureview</groupId>
<artifactId>captureview</artifactId>
<version>1.0.1</version>
<type>pom</type>
</dependency>

Usage

Layout.xml
1
2
3
4
<me.next.captureview.CaptureView
android:id="@+id/your_id"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
CaptureView captureView = (CaptureView) findViewById(R.id.cv_main);
captureView.setPaintColor(getResources().getColor(R.color.colorAccent));
captureView.setOnButtonClickListener(new OnButtonClickListener() {
@Override
public void onConfirmClick(Rect rect) {
int left = rect.left;
int top = rect.top;
int right = rect.right;
int bottom = rect.bottom;
// do something ...
}
@Override
public void onCancelClick() {
}
});

License

Copyright 2017 NeXT

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.