Araura / ErrorView

A custom view that displays an error image, a title, and a subtitle given an HTTP status code.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Android Arsenal

ErrorView

A custom view that displays an error image, a title, and a subtitle given an HTTP status code. It can be used for various other purposes like displaying other kinds of errors, or just messages with images.

#Usage ###Add as a dependency

    compile 'com.github.xiprox.errorview:library:1.0.0'

###Set the error by HTTP Status Code You just need to pass your HTTP status code using setError(int) and ErrorView will show the associated error description for you.

###Set the error manually In order to set the title or the subtitle manually, you can make use of the setErrorTitle(String), setErrorTite(int), setErrorSubtitle(String), and setErrorSubtitle(int) methods.

###Catch Retry Events To catch retry events, you can make use of the setOnRetryListener(RetryListener) method.

###More Methods Check out the source code for other methods and their explanations.

###XML Attributes

<tr.xip.errorview.ErrorView xmlns:errorview="http://schemas.android.com/apk/res-auto"
    android:id="@+id/error_view"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    errorview:ev_errorImage="@drawable/..."
    errorview:ev_errorSubtitle="@string/..."
    errorview:ev_errorTitle="@string/..."
    errorview:ev_retryButtonBackground="@drawable/..."
    errorview:ev_retryButtonTextColor="@color/..."
    errorview:ev_showRetryButton="boolean"
    errorview:ev_showSubtitle="boolean"
    errorview:ev_showTitle="boolean" />

#Sample App Get it on Google Play

#License

Copyright (C) 2014 Ihsan Isik

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.

About

A custom view that displays an error image, a title, and a subtitle given an HTTP status code.


Languages

Language:Java 100.0%