Android开源 - 非常酷的图片组件

TamBreaux 7年前
   <h2><strong>CoolImageView</strong></h2>    <p>A imageView is similar to QQ that imageView background picture can move up and down,But the function is more powerful than QQ,it also supports left and right movement</p>    <p>Dynamic effect preview (Because the gif resources are large, please wait for the resources to complete the load)</p>    <p>this is background picture left and right movement</p>    <p style="text-align:center"><img src="https://simg.open-open.com/show/9a158526c28ce7a452b1a7abd09f833a.gif"></p>    <p>this is background picture move up and down</p>    <p style="text-align:center"><img src="https://simg.open-open.com/show/4cdd0a4054c959cf083c4284a4f937fb.gif"></p>    <h2><strong>How to use</strong></h2>    <h2><strong>step1: Add the following to your attrs.xml file (in res/values):</strong></h2>    <pre>  <code class="language-java"><resources>      <declare-styleable name="CoolImageView">          <attr name="direction" format="string"/>      </declare-styleable>  </resources></code></pre>    <h2><strong>step2:Add the following code to the root view of your layout:</strong></h2>    <pre>  <code class="language-java">xmlns:app="http://schemas.android.com/apk/res-auto"</code></pre>    <p>step3:Add the widget code in the appropriate place in your xml file, Here's a sample implementation:</p>    <pre>  <code class="language-java"><?xml version="1.0" encoding="utf-8"?>  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:tools="http://schemas.android.com/tools"      xmlns:app="http://schemas.android.com/apk/res-auto"      android:id="@+id/activity_main"      android:layout_width="match_parent"      android:layout_height="match_parent"      android:orientation="vertical"      tools:context="com.example.hzhuqi.coolimagview.MainActivity">        <com.example.hzhuqi.coolimagview.CoolImageView          android:layout_width="wrap_content"          android:layout_height="300dp"          android:src="@mipmap/qq"          app:direction="horizontal"           >      </com.example.hzhuqi.coolimagview.CoolImageView>        <com.example.hzhuqi.coolimagview.CoolImageView          android:layout_marginTop="@dimen/activity_vertical_margin"          android:layout_width="match_parent"          android:layout_height="match_parent"          android:src="@mipmap/qq_"          app:direction="vertical"          >      </com.example.hzhuqi.coolimagview.CoolImageView>  </LinearLayout></code></pre>    <h2><strong>Notice:</strong></h2>    <p>you should set direction properties in your xml file,If you don't want to do that.You can use ordinary ImageView instead</p>    <h2><strong>License</strong></h2>    <p>MIT License</p>    <p>Copyright (c) 2016 hq_sunshine</p>    <p>Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:</p>    <p>The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.</p>    <p>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</p>    <p> </p>    <p> </p>