Draw rectangle to select specific area.
- Select specific area.
compile 'me.next.captureview:captureview:1.0.1'
<dependency>
<groupId>me.next.captureview</groupId>
<artifactId>captureview</artifactId>
<version>1.0.1</version>
<type>pom</type>
</dependency>
<me.next.captureview.CaptureView
android:id="@+id/your_id"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
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() {
}
});
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.