2017년 7월 11일 화요일

Android Image Search Application!!


Tools to easily search and download images to the Internet quickly and easily.

ANDROID APPLICATION : IMAGE SEARCH
URL : https://play.google.com/store/apps/details?id=com.study.free.imagesearch

You can easily and quickly search for images using the Google search engine.
Search for things you do not know about "flowers, cars, etc." through the Google search engine.
(The "Storage, Location, Camera" function permission is required for image search.)

How to use:
  1. Search through the images on the phone
  2. Search for images by taking a camera from a phone

Characteristic:
  1. Easy-to-use UI interface
  2. Using the Google Image Search Engine
  3. After image search, "Download Image, Share, URL Copy ... "Providing more features

If you have any problems or need improvement, please contact us at the email address below.
We will improve.







2017년 7월 10일 월요일

[Image Search Application] 사용된 이미지 출처 및 원 저자작자 표시


Image Search Application" Used image source and original author

[Picture Search Icon]
Author: Lokas Software
License: CC Attribution 3.0 Unported
Readme file
Commercial usage:   Allowed
WebSite : http://www.softicons.com/toolbar-icons/soft-icons-by-lokas-software/picture-search-icon

[Vintage Cameras Image]
sername: birdwellphotos
Name: Wilma Birdwell
Location: Red Boiling Springs / TN / United States
WebSite : http://www.freephotosbank.com/12443.html

[frame Image]
Jessica Ruscello(Marin County, Californiamonkontheroad.com)
MAKE : Nikon
MODEL : NIKON D5500
SHUTTER SPEED : 1/4000s
APERTURE : ƒ/5.0
FOCAL LENGTH : 40mm
ISO : 400
PUBLISHED ON : June 5, 2016
DIMENSIONS : 6000 × 4000
WebSite : https://unsplash.com/search/frame?photo=-GUyf8ZCTHM

"Image Search" Personal Information Processing Policy("Image Search" 개인정보처리방침)

[English Version]================================

["Image Search" Personal Information Processing Policy]

The user needs the following access rights within the "Image Search" application.

1. Camera (android.permission.CAMERA)
   The purpose of requesting access to the camera is to provide Google Image Search.
   It is to take a picture with the camera, and to find the same image or letter of the picture.
 
Please note that the Image Search application is not being used for any purpose other than the above purpose.
Also, when you use the feature, your personal information is not collected by the developer.
The collected user information will be sent to Google's image recognition server, but technically developers will not have access to their personal information.

Thank you.

[Korean Version]================================

["Image Search" 개인정보처리방침]
Image Search 어플 내에서 다음과 같은 접근 권한을 사용자에게 요구합니다.

1.카메라(android.permission.CAMERA)
  카메라에 접근 권한을 요구하는 목적은 Google Image Search 기능을 제공하기 위해서 입니다.
  카메라로 사진을 찍어서, 사진의 같은 이미지 or 문자 등 정보를 찾기 위해서 입니다.

Image Search 어플은 위 목적이외에는 다른 목적으로 사용되고 있지 않고 있음을 알려드립니다.
또한 기능 사용 시, 개인정보를 개발자가 수집 하지 않습니다.
수집된 사용자 정보는 Google의 이미지 인식 서버로 전송될 뿐, 기술적으로 개발자는 개인정보에 접근 불가능 합니다.

감사합니다.

2017년 6월 4일 일요일

[STUDY] Android "shinebutton" 라이브러리 소개

[목차]======================================================
1. Android ShineButton 소개
2. ShineButton 라이브러리 정보
  1) 라이브러리 다운로드 주소
  2) Installation and usage
  3) License
===========================================================

1. Android ShineButton 소개
버튼을 클릭하면 폭죽이 터지는 듯한 효과를 제공하는 라이브러리로 아래 그림 같은 효과를 제공한다.
This is a UI lib for Android. Effects like shining.
preview

2. ShineButton 라이브러리 정보
  1) 라이브러리 다운로드 주소
     https://github.com/ChadCSong/ShineButton 

  2) Installation and usage
    • Maven
    <dependency>
      <groupId>com.sackcentury</groupId>
      <artifactId>shinebutton</artifactId>
      <version>0.1.7</version>
      <type>aar</type>
    </dependency>
    • Gradle
    buildscript {
        repositories {
            mavenCentral()
        }
    }
    dependencies {
        compile 'com.sackcentury:shinebutton:0.1.7'
    }

    • Usage
     shineButton = (ShineButton) findViewById(R.id.shine_button);
     shineButton.init(activity);
    or
     ShineButton shineButtonJava = new ShineButton(this);
     shineButtonJava.setBtnColor(Color.GRAY);
     shineButtonJava.setBtnFillColor(Color.RED);
     shineButtonJava.setShapeResource(R.raw.heart);
     shineButtonJava.setAllowRandomColor(true);
     LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(100, 100);
     shineButtonJava.setLayoutParams(layoutParams);
     if (linearLayout != null) {
         linearLayout.addView(shineButtonJava);
     }

    • iOS lib fave-button Android implement. FaveButton was inspired by Twitter’s Like Heart Animation;
      3) License
    The MIT License (MIT)

    Copyright (c) 2016 Chad Song 

    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:

    The above copyright notice and this permission notice shall be included in all
    copies or substantial portions of the Software.

    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.





    출처 : 인터넷에서 검색하여 필요한 정보를 다양한 사이트에서 종합하여 작성된 것입니다. 많은 사이트 내용을 종합하여 공부하여 작성하다보니 일일이 나열하지 못하였습니다. ㅈㅅ(_ _) 이글은 자유롭게 퍼 가셔서 도움이 되었으면 좋겠습니다. 감사합니다. 

    [STUDY] Android "android-flowlayout" 라이브러리 소개

    [목차]===========================================================
    1. android-flowlayout 소개
    2. android-flowlayout 라이브러리 정보
      1) 라이브러리 다운로드 주소
      2) Installation and usage
      3) Detailed parameters
      4) License
    ================================================================

    1. android-flowlayout 소개
    자바 GUI에는 FlowLayout이라는 유용한 레이아웃이 있는데, 안드로이드에는 없어서 만들어진 오픈소스입니다.
    UI를 배치하다가 공간이 부족한 경우, 줄바꿈하여 다음행에서 계속 UI를 배치하는 레이아웃임


    2. android-flowlayout 라이브러리 정보
      1) 라이브러리 다운로드 주소
         https://github.com/ApmeM/android-flowlayout 

      2) Installation and usage
    • Add it as dependency in Gradle as : compile 'org.apmem.tools:layouts:1.10@aar'
    • Or maven
        <dependency>
            <groupId>org.apmem.tools</groupId>
            <artifactId>layouts</artifactId>
            <version>1.10</version>
            <scope>provided</scope>
        </dependency>

    • Add the following xml code into your layout/something.xml:
    <org.apmem.tools.layouts.FlowLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    >
    </org.apmem.tools.layouts.FlowLayout>
    • Android gravity now supported (in combination with elements weight):
        f:weightDefault="1.0"
        android:gravity="fill"
    • To override default spacing between elements use default android margins in the child View element:
    android:layout_marginTop="32dip"
    android:layout_marginRight="32dip"
    • Also if you need to break line before some object even if there is enough space for it in the previous line - use the following LayoutParameter in the child view element:
    f:layout_newLine="true"

      3) Detailed parameters
    • android:orientation - line direction. Use one of the following values:

    * horizontal - line will be in horizontal direction, linebreak will create new line

    * vertical - line will be in vertical direction, linebreak will create new column

    •     android:gravity - standart android gravity supported
    • debugDraw - draw debug information
    • weightDefault - default weight value for child elements. Used to fill line in case of Gravity.FILL_HORIZONTAL | Gravity.FILL_VERTICAL
    • layoutDirection - direction of inner child elements:
                *  ltr - left to right direction

                *  rtl - right to left direction
    • android:layout_margin* - override default spacings
    • android:layout_gravity - standart aandroid gravity supported
        * layout_weight - weight of the element. If not specified "layout.defaultWight" is used.

    • layout_newLine - brake line before current element even if there is enough place in the current line.
      4) License
    Copyrights
    Copyright 2011, Artem Votincev (apmem.org)
    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.


    출처 : 인터넷에서 검색하여 필요한 정보를 다양한 사이트에서 종합하여 작성된 것입니다. 많은 사이트 내용을 종합하여 공부하여 작성하다보니 일일이 나열하지 못하였습니다. ㅈㅅ(_ _) 이글은 자유롭게 퍼 가셔서 도움이 되었으면 좋겠습니다. 감사합니다.