GithubHelp home page GithubHelp logo

floatingview's Introduction

FloatingView

このAndroidプロジェクトは、チャットや何らかの情報を前面に表示するためのViewです
AndroidのAPI 14以降に対応しています

##Screenshots    

動作の詳細はYouTubeの動画を確認してください
SimpleFloating
FloatingAd

Requirements

Target Sdk Version : 22
Min Sdk Version : 14

##How to use

  1. FloatingViewを使用したいプロジェクトに本プロジェクトのlibraryを追加します

  2. FloatingViewを表示するためのServiceを定義します

public class ChatHeadService extends Service {
  ・・・
}
  1. FloatingViewに表示するViewの設定を行います(サンプルではonStartCommandで行っています)
  final LayoutInflater inflater = LayoutInflater.from(this);
  final ImageView iconView = (ImageView) inflater.inflate(R.layout.widget_chathead, null, false);
  iconView.setOnClickListener(・・・);
  1. FloatingViewManagerを使用して、FloatingViewの設定を行います
  mFloatingViewManager = new FloatingViewManager(this, this);
  mFloatingViewManager.setFixedTrashIconImage(R.drawable.ic_trash_fixed);
  mFloatingViewManager.setActionTrashIconImage(R.drawable.ic_trash_action);
  mFloatingViewManager.addViewToWindow(iconView, FloatingViewManager.SHAPE_CIRCLE, (int) (16 * metrics.density));

なお、FloatingViewManagerの第2引数はFloatingViewListenerです

これは、FloatingViewを終了する際に呼び出される処理(onFinishFloatingView)を記述します

    @Override
    public void onFinishFloatingView() {
        stopSelf();
    }
  1. AndroidManifestにパーミッションを追加します
 <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
 <uses-permission android:name="android.permission.VIBRATE"/>
  1. AndroidManifestにServiceを定義します
    例)
    <application ・・・>
        ・・・
        <!-- デモ表示サービス -->
        <service
            android:name="jp.co.recruit_lifestyle.sample.service.ChatHeadService"
            android:exported="false"/>
        ・・・
    </application>
  1. Serviceを開始する処理を記述します(以下はFragmentの例)
    final Activity activity = getActivity();
    activity.startService(new Intent(activity, ChatHeadService.class));

補足)FloatingAdServiceを動作させるためには、string.xmlのad_unit_idを自身の広告ID(インタースティシャル)で置き換えてください

 <string name="ad_unit_id">ADD_YOUR_UNIT_ID</string>

参考:アプリに広告ユニット IDを設定する

Credits

FloatingView is owned and maintained by RECRUIT LIFESTYLE CO., LTD.

FloatingView was originally created by Yoshihide Sogawa

##License

Copyright 2015 RECRUIT LIFESTYLE CO., LTD.

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.

floatingview's People

Contributors

yoshihidesogawa avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.