Giter VIP home page Giter VIP logo

googleprogressbar's Introduction

GoogleProgressBar

This library is not maintained anymore and there will be no further releases

Android library to display different kind of google related animations for the progressBar.

These animations have been finished so far:

FoldingCirclesProgressBar GoogleMusicDicesDrawable NexusRotationCross.gif NexusRotationCross.gif

TODO

  • Different colors for the already existing `GoogleMusicDicesDrawable'. Either the whole dice or his faces.

I also would love to receive your pull requests to create any of the following animations or others that you think fit on this library:

  • NEXUS_CIRCLES:

    Nexus 5 circles boot progress animation (Just the circles bouncing)

  • NEXUS_CROSS:

    Galaxy nexus shinny cross boot animation

Usage

######Dynamically Add a ProgressBar to the xml layout:

     <ProgressBar
            android:id="@+id/google_progress"
            android:layout_width="50dp"
            android:layout_height="50dp"
            android:layout_gravity="center"/>

Choose from the list of Drawables the one you want to use and place it in your code:

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        ButterKnife.inject(this);
        mProgressBar.setIndeterminateDrawable(new your_list_option.Builder(this)
                    .build());
        //...
    }

your_list_option can be replace for:

  • FoldingCirclesDrawable
  • GoogleMusicDicesDrawable
  • NexusRotationCrossDrawable
  • ChromeFloatingCircles

The more custom Drawables finished, the more options in this list.

Attributes depending on the drawable:

######Color

    mProgressBar.setIndeterminateDrawable(new you_list_option.Builder(this)
                                                             .colors(getResources().getIntArray(R.array.colors) //Array of 4 colors
                                                             .build());
  • FoldingCirclesDrawable
  • NexusRotationCrossDrawable
  • ChromeFloatingCirclesDrawable

So far GoogleMusicDicesDrawable doesn't have color options. The animation speed can be modified easily with android:indeterminateDuration in the xml.

If not colors are define the 4 default google colors (red,blue, yellow and green) will be used.

######From XML

When you want to use the GoogleProgresBar from XML you need to add the following view to your layout:

    <com.jpardogo.android.googleprogressbar.library.GoogleProgressBar
            android:id="@+id/google_progress"
            android:layout_width="50dp"
            android:layout_height="50dp"
            android:layout_gravity="center"
            gpb:type="your_list_option"/>

The require attribute gpb:type will specify the type of ProgressBar to display

your_list_option can be replace for:

  • folding_circles
  • nexus_rotation_cross
  • google_music_dices
  • chrome_floating_circles

The more custom Drawables finished, the more options in this list.

Each type of GoogleProgressBar have different attributes:

Attributes depending on type: ######Color

  • folding_circles
  • nexus_rotation_cross
    • gpb:colors="@array/colors"
      • Optional, If not colors are define the 4 default google colors (red,blue, yellow and green) will be used.
      • It needs to be an array of 4 colors

So far google_music_dices doesn't have color options. The animation speed can be modified easily with android:indeterminateDuration in the xml.

Including in your project

You can either add the library to your application as a library project or add the following dependency to your build.gradle:

Maven Central

dependencies {
    compile 'com.jpardogo.googleprogressbar:library:(latest version)'
}

Proguard

In order to use this library with proguard you need to add this line to your proguard.cfg:

-keep class com.jpardogo.android.googleprogressbar.** { *; }

How to contribute?

  • Pull request to dev branch NO master.

Acknowledgements

Developed By

Javier Pardo de Santayana Gómez - [email protected]

Follow me on Twitter Follow me on Google+ Follow me on LinkedIn
Copyright 2013 Javier Pardo de Santayana Gómez

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.

googleprogressbar's People

Contributors

jpardogo avatar makovkastar avatar mewx avatar romainpiel avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

googleprogressbar's Issues

null instead context in fragments

some time in fragment throws exception when i use :

//So i use it like this 
getActivity().findViewById(R.id.google_progress).setVisibility(View.INVISIBLE);

and i know getActivity some time return null instead context but still is problem ! you have any suggest can cover this ?

/**
     * Return the {@link FragmentActivity} this fragment is currently associated with.
     * May return {@code null} if the fragment is associated with a {@link Context}
     * instead.
     */
    final public FragmentActivity getActivity() {
        return mHost == null ? null : (FragmentActivity) mHost.getActivity();
    }

How to make Chrome ProgressBar rotate?

Hi, could you improve the Chrome ProgressBar animation in order to make it rotate clockwise or counterclockwise while switching circles positions? Thank you in advance.

Antialias and a couple of comments

Hey,

Good job mate for this library! A couple of comments there:

  • you should set the antialias to the paints, I've tried and it looks better
  • I'm not sure if inheriting from ProgressBar is a good idea. You are doing some extra work in your super.onDraw(canvas) I would actually clone the code from ProgressBar, remove what I don't need and set that as a base class for my custom progress bars.

Good idea anyway!

Preview failed, and showed exceptions in Android Studio 1.0

I use GPB in a cardview, and Android Studio 1.0 show me an exception.

The way I use:

<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:card-view="http://schemas.android.com/apk/res-auto"
    xmlns:gpb="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="140dp"
    android:layout_marginLeft="10dp"
    android:layout_marginRight="10dp"
    android:layout_marginTop="10dp"
    android:clickable="true"
    android:foreground="?android:attr/selectableItemBackground"
    card-view:cardBackgroundColor="@color/novel_item_white"
    card-view:contentPadding="5dp"
    card-view:cardElevation="2dp"
    card-view:cardMaxElevation="4dp">
        <com.jpardogo.android.googleprogressbar.library.GoogleProgressBar
            android:id="@+id/google_progress"
            android:layout_width="20dp"
            android:layout_height="20dp"
            gpb:type="folding_circles"
            android:layout_centerVertical="true"
            android:layout_centerHorizontal="true" />
</android.support.v7.widget.CardView>

The exception:

android.content.res.Resources$NotFoundException: Int array resource ID #0x7f050000
    at android.content.res.Resources.getIntArray(Resources.java:522)
    at com.jpardogo.android.googleprogressbar.library.FoldingCirclesDrawable$Builder.initDefaults(FoldingCirclesDrawable.java:256)
    at com.jpardogo.android.googleprogressbar.library.FoldingCirclesDrawable$Builder.<init>(FoldingCirclesDrawable.java:251)
    at com.jpardogo.android.googleprogressbar.library.GoogleProgressBar.buildDrawable(GoogleProgressBar.java:42)
    at com.jpardogo.android.googleprogressbar.library.GoogleProgressBar.<init>(GoogleProgressBar.java:32)
    at com.jpardogo.android.googleprogressbar.library.GoogleProgressBar.<init>(GoogleProgressBar.java:22)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:408)
    at org.jetbrains.android.uipreview.ViewLoader.createNewInstance(ViewLoader.java:379)
    at org.jetbrains.android.uipreview.ViewLoader.loadView(ViewLoader.java:99)
    at com.android.tools.idea.rendering.LayoutlibCallback.loadView(LayoutlibCallback.java:172)
    at android.view.BridgeInflater.loadCustomView(BridgeInflater.java:207)
    at android.view.BridgeInflater.createViewFromTag(BridgeInflater.java:132)
    at android.view.LayoutInflater.rInflate_Original(LayoutInflater.java:806)
    at android.view.LayoutInflater_Delegate.rInflate(LayoutInflater_Delegate.java:64)
    at android.view.LayoutInflater.rInflate(LayoutInflater.java:782)
    at android.view.LayoutInflater.rInflate_Original(LayoutInflater.java:809)
    at android.view.LayoutInflater_Delegate.rInflate(LayoutInflater_Delegate.java:64)
    at android.view.LayoutInflater.rInflate(LayoutInflater.java:782)
    at android.view.LayoutInflater.inflate(LayoutInflater.java:504)
    at android.view.LayoutInflater.inflate(LayoutInflater.java:385)
    at com.android.layoutlib.bridge.impl.RenderSessionImpl.inflate(RenderSessionImpl.java:400)
    at com.android.layoutlib.bridge.Bridge.createSession(Bridge.java:332)
    at com.android.ide.common.rendering.LayoutLibrary.createSession(LayoutLibrary.java:350)
    at com.android.tools.idea.rendering.RenderService$5.compute(RenderService.java:688)
    at com.android.tools.idea.rendering.RenderService$5.compute(RenderService.java:677)
    at com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(ApplicationImpl.java:932)
    at com.android.tools.idea.rendering.RenderService.createRenderSession(RenderService.java:677)
    at com.android.tools.idea.rendering.RenderService.render(RenderService.java:815)
    at org.jetbrains.android.uipreview.AndroidLayoutPreviewToolWindowManager.doRender(AndroidLayoutPreviewToolWindowManager.java:646)
    at org.jetbrains.android.uipreview.AndroidLayoutPreviewToolWindowManager.access$1700(AndroidLayoutPreviewToolWindowManager.java:82)
    at org.jetbrains.android.uipreview.AndroidLayoutPreviewToolWindowManager$7$1.run(AndroidLayoutPreviewToolWindowManager.java:589)
    at com.intellij.openapi.progress.impl.ProgressManagerImpl$2.run(ProgressManagerImpl.java:178)
    at com.intellij.openapi.progress.ProgressManager.executeProcessUnderProgress(ProgressManager.java:209)
    at com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(ProgressManagerImpl.java:212)
    at com.intellij.openapi.progress.impl.ProgressManagerImpl.runProcess(ProgressManagerImpl.java:171)
    at org.jetbrains.android.uipreview.AndroidLayoutPreviewToolWindowManager$7.run(AndroidLayoutPreviewToolWindowManager.java:584)
    at com.intellij.util.ui.update.MergingUpdateQueue.execute(MergingUpdateQueue.java:320)
    at com.intellij.util.ui.update.MergingUpdateQueue.execute(MergingUpdateQueue.java:310)
    at com.intellij.util.ui.update.MergingUpdateQueue$2.run(MergingUpdateQueue.java:254)
    at com.intellij.util.ui.update.MergingUpdateQueue.flush(MergingUpdateQueue.java:269)
    at com.intellij.util.ui.update.MergingUpdateQueue.flush(MergingUpdateQueue.java:227)
    at com.intellij.util.ui.update.MergingUpdateQueue.run(MergingUpdateQueue.java:217)
    at com.intellij.util.concurrency.QueueProcessor.runSafely(QueueProcessor.java:238)
    at com.intellij.util.Alarm$Request$1.run(Alarm.java:327)
    at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
    at java.util.concurrent.FutureTask.run(FutureTask.java:266)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
    at java.lang.Thread.run(Thread.java:745)

create Progressbar programmatically

as per your code, you are using progressbar from xml. but how can we create progressbar programmatically with Foldingdrawable.? i tried simple but didnt showing progressbar.

Kotlin support

I cann't implement it in my kotlin project, please support this, thanks

Getting null pointer exception while showing progressbar

I am using this library in viewpager i am getting this crash

java.lang.NullPointerException: Attempt to read from null array
at com.jpardogo.android.googleprogressbar.library.ChromeFloatingCirclesDrawable.draw(ChromeFloatingCirclesDrawable.java:189)
at android.widget.ProgressBar.drawTrack(ProgressBar.java:1803)
at android.widget.ProgressBar.onDraw(ProgressBar.java:1770)
at android.view.View.draw(View.java:17503)
at android.view.View.updateDisplayListIfDirty(View.java:16496)
at android.view.ViewGroup.recreateChildDisplayList(ViewGroup.java:3907)
at android.view.ViewGroup.dispatchGetDisplayList(ViewGroup.java:3887)
at android.view.View.updateDisplayListIfDirty(View.java:16456)
at android.view.ViewGroup.recreateChildDisplayList(ViewGroup.java:3907)
at android.view.ViewGroup.dispatchGetDisplayList(ViewGroup.java:3887)
at android.view.View.updateDisplayListIfDirty(View.java:16456)
at android.view.ViewGroup.recreateChildDisplayList(ViewGroup.java:3907)
at android.view.ViewGroup.dispatchGetDisplayList(ViewGroup.java:3887)
at android.view.View.updateDisplayListIfDirty(View.java:16456)

ดูหนังฟรี เกจิ คนฆ่าผี (2024) เต็มเรื่อง UHD หนังใหม่ – พากย์ไทย

ดูหนังออนไลน์ เกจิ คนฆ่าผี 2024 เต็มเรื่อง 1080p พากย์ไทย, ดูหนัง เกจิ คนฆ่าผี (เกจิ คนฆ่าผี- 2024) เต็มเรื่อง HD พากย์ไทย 4k?, ดู-Geji: The Spirit Hunter / เกจิ คนฆ่าผี (2024) เต็มเรื่องบนมือถือ สมาร์ททีวี และเดสก์ทอปในความละเอียด 1080p สูงสุด Full HDพากย์ไทย ดูหนัง เกจิ คนฆ่าผี หนังออนไลน์ฟรี เต็มเรื่อง HD พากย์ไทย,เกจิ คนฆ่าผี- เต็มเรื่อง FULL HD/4K พากย์ไทย. เกจิ คนฆ่าผี (2024) พากย์ไทย ดูหนังออนไลน์ Geji: The Spirit Hunter (2024) พากย์ไทย เต็มเรื่อง เกจิ คนฆ่าผี พากย์ไทย ซับไทย ดูหนัง HD ดูซีรีย์ออนไลน์ ดู Netflix ดูหนังฟรี

มาให้ท่านได้เลือกชมกันแบบจุใจ ดูหนัง เกจิ คนฆ่าผี ฟรีออนไลน์ใหม่ หนังใหม่ชนโรง

⚡🧑 ดูหนังเต็มเรื่อง ☛ เกจิ คนฆ่าผี UHD เต็มเรื่อง (Geji: The Spirit Hunter) พากย์ไทย

+ดูหนังใหม่! Geji: The Spirit Hunter [เกจิ คนฆ่าผี] หนังออนไลน์ฟรี เต็มเรื่อง HD พากย์ไทย,เกจิ คนฆ่าผี- เต็มเรื่อง FULL HD/4K พากย์ไทย. ดูหนังผีชีวะ วิกฤตเกาะมรณะ2024 พากย์ไทย เต็มเรื่อง (THAI-DUBBED),เกจิ คนฆ่าผีพากย์ไท 1080p, [ดู]เกจิ คนฆ่าผี[THAI] พากย์ไท, ดูหนัง!เกจิ คนฆ่าผีเกจิ คนฆ่าผี) ออนไลน์ฟรี - ดูหนัง Geji: The Spirit Hunter (2024) เกจิ คนฆ่าผี เต็มเรื่อง [HD] พากย์ไทย.เกจิ คนฆ่าผี หนังเต็ม /FILM-THAI (SUB-THAI) เกจิ คนฆ่าผี (Geji: The Spirit Hunter) จากเรื่องเล่าสุดสยองสู่จอภาพยนตร์ (2024) เต็มเรื่อง [HD] พากย์ไทย, เกจิ คนฆ่าผี 『ดูไทย』 [Geji: The Spirit Hunter] (2024) เต็มเรื่อง

ดูหนังออนไลน์ เกจิ คนฆ่าผี 2024 เต็มเรื่อง 1080p พากย์ไทย, ดูหนัง เกจิ คนฆ่าผี (เกจิ คนฆ่าผี- 2024) เต็มเรื่อง HD พากย์ไทย 4k?, ดู-The-Tenant/ เกจิ คนฆ่าผี (2024) เต็มเรื่องบนมือถือ สมาร์ททีวี และเดสก์ทอปในความละเอียด 1080p สูงสุด Full HDพากย์ไทย ดูหนัง เกจิ คนฆ่าผี หนังออนไลน์ฟรี เต็มเรื่อง HD พากย์ไทย,เกจิ คนฆ่าผี- เต็มเรื่อง FULL HD/4K พากย์ไทย. เกจิ คนฆ่าผี (2024) พากย์ไทย ดูหนังออนไลน์ Geji: The Spirit Hunter (2024) พากย์ไทย เต็มเรื่อง เกจิ คนฆ่าผี พากย์ไทย ซับไทย ดูหนัง HD ดูซีรีย์ออนไลน์ ดู Netflix ดูหนังฟรี

"เกจิ คนฆ่าผี" เว็บไซต์หนังเต็มฟรี

เกจิ คนฆ่าผี (อังกฤษ: Geji: The Spirit Hunter) เรื่องราวในปี 2525 แก้ว หมอผีฝึกหัด (ปั้นจั่น ปรมะ อิ่มอโนทัย) รับจ้างไล่ผี ทำพิธีไสยเวทย์โดยไม่เกี่ยงงาน ทั้งไสยขาวและดำ หวังสร้างรายได้เพื่อมาสู่ขอสร้อย (เดียร์ สุภาวดี กิติโสภากุล) แต่ความจนของแก้วทำให้แม่ของสร้อยยกสร้อยให้แต่งงานกับอิน (โจอี้ ชัยยุทธ กิติชัยวัฒน์) เพื่อนสนิทของแก้ว อินขอให้แก้วช่วยทำบางสิ่งก่อนที่แก้วจะเดินทางเข้ากรุงเทพฯ โดยทิ้งสร้อยให้ตกเป็นภรรยาของอิน เวลาผ่านไป สร้อยมาหาแก้วในกรุงเทพฯ พร้อมแจ้งข่าวการตายของอิน แก้วรับสร้อยที่ท้องแก่มาอยู่ด้วยกัน ความรักของทั้งสองคนเริ่มกลับมาก่อตัวขึ้นและพร้อมกลับมาทำลายทุกคนที่เกี่ยวข้อง

超高清(2024)

เต็มเรื่อง HD เE18↩ี่หยด เกิดเหตุการณ์สุดสะพรึงขวัญขึ้นใน พ.ศ. 2515 เด็กสาวในหมู่บานหางไกลในจังหวัดากญจนบุรีเสียชีวิตอย่างเป็นปริศนา เมื่อได้ยินเสียงชวนขนหัวลุก "เกจิ คนฆ่าผี...... เกจิ คนฆ่าผี......" เE43↩นยามราตรี หลังจากยักษ์ปลดประจำการเขากลับมาช่วยงานที่บ้านตามคำสั่งของเฮียฮั่ง และบุญเย็น ผู้เป็นบิดามารดา ยักษ์มีน้อง ๆ อายุศ, ยอด, หยาด、แย้ม และยี่ ข่าวเด็กสาวตายอย่างน่าสยดสยองแพร่สะพัดไปอย่างรวดเร็ว หยาดสัมผัสได้ถึงภัยเร้นลับที่คอบคลานเข้ามาในหมู่บานแย้มน้องสาวของเธอเริ่มีอาการแปลก เLm_E46↩ เจากเจอหญิชงุดดำลึกลับระหว่างกลับจากโรงเรียน อาการของแย้มทรุดลงเรือย ๆ พร้อมท่าทีประหาดอย่างหาคำตอบไม่ได้า

ดูหนังออนไลน์ เกจิ คนฆ่าผี『ดูไทย』2024 เต็มเรื่อง HD พากย์ไทย THAI, ดูหนังไทย เกจิ คนฆ่าผี เต็มเรื่องออนไลน์ฟรี - ดูหนเต็มเรื่อง เกจิ คนฆ่าผี/Geji: The Spirit Hunter ออนไลน์ - ดูหนังเกจิ คนฆ่าผี (2024) เต็มเรื่องออนไลน์ฟรี HD +ดู (หนัง!)▷ เกจิ คนฆ่าผี เต็มเรื่องฟรี 2024 พากย์ไทย, [ดู.หนัง] เกจิ คนฆ่าผี 2024 (THAI ) เต็มเรื่อง HD พากย์ไทย.ดูหนัง Geji: The Spirit Hunter เกจิ คนฆ่าผี 2024 พากย์ไทย (THAI-SUB ),Geji: The Spirit Hunter -เกจิ คนฆ่าผี" 2024 ดูหนังเต็มเรื่อง [TV-THAI] พากย์ไท 1080p. ดูหนัง-HD IMAX เกจิ คนฆ่าผี 2024 ดูหนังเต็มเรื่อง [THAI SUB]

ดูหนังเต็มเรื่องออนไลน์ "เกจิ คนฆ่าผี" ผ่านมือถือ และ สมาร์ททีวีไม่กระตุก

ดูหนังออนไลน์ฟรี เกจิ คนฆ่าผี เต็มเรื่อง ในคุณภาพ HD ~ ดูหนังไทย Death Whisperer (2024) เต็มเรื่องฟรี 1080p ผ่านมือถือ และ Smart TV ไม่กระตุก ~ ดูหนัง เกจิ คนฆ่าผี เต็มเรื่อง 037hd

เว็บไซต์สำหรับชมภาพยนตร์ เกจิ คนฆ่าผี บนมือถือ สมาร์ททีวี และเดสก์ท็อปในความละเอียด 1080p สูงสุด Full HD 4K IMAX และยังสามารถขยายภาพได้ตามต้องการ

ดูหนังไทย Geji: The Spirit Hunter (2024) เกจิ คนฆ่าผี เต็มเรื่องออนไลน์ฟรี ดูหนเต็มเรื่อง เกจิ คนฆ่าผี ออนไลน์ฟรี - ดูหนังออ “เกจิ คนฆ่าผี” (2024) นไลน์ฟรี เต็มเรื่อง HD.

เกจิ คนฆ่าผี เต็มเรื่อง ประเภท: สยองขวัญ ดาว: Nadech Kugimiya, Denise Jelilcha Kapaun, Junior Kajbhunditt Jaidee, Arisara Wongchalee, Paramej Noiam ผู้กำกับ: Taweewat Wantha

เกจิ คนฆ่าผี เต็มเรื่อง 2024 (Geji: The Spirit Hunter/Geji: The Spirit Hunter;เกจิ คนฆ่าผี) เป็นภาพยนตร์ไทยแนวสยองขวัญเหนือธรรมชาติ ที่ดัดแปลงจากนวนิยายชื่อ เกจิ คนฆ่าผี...แว่วเสียงครวญคลั่ง ของกฤตานนท์ สร้างโดย เมเจอร์ จอยน์ ฟิล์ม และ บีอีซีเวิลด์ อันเป็นกิจการร่วมค้าของ บีอีซีเวิลด์ (ช่อง 3) และ เอ็ม สตูดิโอ กำกับโดย ทวีวัฒน์ วันทา นำแสดงโดย ณเดชน์ คูกิมิยะ, เดนิส เจลีลชา คัปปุน, รัตนวดี วงศ์ทอง, กาจบัณฑิต ใจดี, พีระกฤตย์ พชรบุณยเกียรติ, ณัฐชา นีน่า เจสซิกา พาโดวัน, อริศรา วงษ์ชาลี และ ปรเมศร์ น้อยอ่ำ เข้าฉายในโรงภาพยนตร์วันที่ 26 ตุลาคม พ.ศ. 2566 โดยเป็นภาพยนตร์ไทยเรื่องแรกที่ถูกถ่ายทำเพื่อเข้าฉายในระบบไอแมกซ์ทั้งระบบ ภาพยนตร์เรื่องนี้สร้างจากเหตุการณ์ที่เกิดขึ้นใน พ.ศ. 2515 ที่เด็กสาวในหมู่บ้านห่างไกลในจังหวัดกาญจนบุรีเสียชีวิตอย่างเป็นปริศนา

เกิดเหตุการณ์สุดสะพรึงขวัญขึ้นใน พ.ศ. 2515 เด็กสาวในหมู่บ้านห่างไกลในจังหวัดกาญจนบุรีเสียชีวิตอย่างเป็นปริศนา เมื่อได้ยินเสียงชวนขนหัวลุก “เกจิ คนฆ่าผี… เกจิ คนฆ่าผี…” ในยามราตรี หลังจากยักษ์ปลดประจำการเขากลับมาช่วยงานที่บ้านตามคำสั่งของเฮียฮั่ง และบุญเย็น ผู้เป็นบิดามารดา ยักษ์มีน้อง ๆ อายุไล่เลี่ยกันห้าคน ยศ, ยอด, หยาด, แย้ม และยี่ ข่าวเด็กสาวตายอย่างน่าสยดสยองแพร่สะพัดไปอย่างรวดเร็ว หยาดสัมผัสได้ถึงภัยเร้นลับที่คืบคลานเข้ามาในหมู่บ้าน แย้มน้องสาวของเธอเริ่มมีอาการแปลก ๆ หลังจากเจอหญิงชุดดำลึกลับระหว่างกลับจากโรงเรียน อาการของแย้มทรุดลงเรื่อย ๆ พร้อมท่าทีประหลาดอย่างหาคำตอบไม่ได้

เรื่องย่อหนัง เกจิ คนฆ่าผี (2024) จากเรื่องเล่าสุดสยองสู่จอภาพยนตร์

เกจิ คนฆ่าผี (2024) เต็มเรื่องฟรี - สยองขวัญ ภาพยนตร์ 121 นาที. Geji: The Spirit Hunter, ທີ່ຫຍົດ, Geji: The Spirit Hunter, Geji: The Spirit Hunter;เกจิ คนฆ่าผี. บทสรุปเรื่องเล่าที่เป็นตำนาน หญิงชุดดำที่มาพร้อมกับเสียง “เกจิ คนฆ่าผี” ความน่ากลัวที่ไม่มีวิธีรับมือ ความสยองที่คืบคลานเข้ามาสู่ครอบครัวนี้อย่างไม่มีเหตุผล ยักษ์จึงต้องทำทุกวิถีทางเพื่อให้แย้มหายจากอาการประหลาด และทำให้ครอบครัวมีชีวิตรอดไปจากเสียงเพรียกสยองยามค่ำคืน "เกจิ คนฆ่าผี" หนังเต็มออนไลน์ฟรี, ดาวน์โหลดหนังเต็มในคุณภาพระดับ HD, ดูสตรีมมิ่งฟรี

ภาพยนตร์เรื่อง เกจิ คนฆ่าผี ได้ทำการบวงสรวงก่อนถ่ายทำที่สตูดิโอช่อง 3 หนองแขมเมื่อวันจันทร์ที่ 24 เมษายน พ.ศ. 2566 และได้เริ่มถ่ายทำคิวแรกเมื่อวันพุธที่ 26 เมษายน พ.ศ. 2566 และถ่ายทำคิวสุดท้ายเมื่อวันเสาร์ที่ 15 กรกฎาคม 2566 ก่อนที่ในวันพุธที่ 9 สิงหาคม พ.ศ. 2566 ทางผู้สร้างได้เผยแพร่ภาพโปสเตอร์ของภาพยนตร์เรื่อง เกจิ คนฆ่าผี ออกมาให้ได้รับชม วันพุธที่ 6 กันยายน พ.ศ. 2566 มีการปล่อยทีเซอร์ตัวแรกให้ได้รับชมพร้อมเปิดเผยนักแสดงอย่างเป็นทางการ

แล้วจะดูหนัง "เกจิ คนฆ่าผี" ออนไลน์เป็นภาษาไทยได้ที่ไหนบ้าง?

โปรดคลิกลิงก์ด้านบนเพื่อชมภาพยนตร์บนเว็บไซต์ของเรา บนเว็บไซต์ของเราเราจัดหาภาพยนตร์ได้มากเท่าที่คุณต้องการ ทั้งหมดมีคุณภาพสูงและแน่นอนว่าไม่มีโฆษณาที่น่ารำคาญ

คำหลักของ Google:

ดูหนังออนไลน์ฟรี เกจิ คนฆ่าผี (2024) ดูหนังไทย Geji: The Spirit Hunter เต็มเรื่อง FHD ดูหนังHD Geji: The Spirit Hunter/เกจิ คนฆ่าผี เต็มเรื่องฟรี [HD] ไทย 1080p ดูหนัง เกจิ คนฆ่าผี (Geji: The Spirit Hunter 2024) เต็มเรื่อง HD พากย์ไทย [1080p] 123tv หนังฟรี เกจิ คนฆ่าผี ออนไลน์ (2024) เกจิ คนฆ่าผี เต็มเรื่อง HD ดู ▷เกจิ คนฆ่าผี [HD-2024] เต็มเรื่องหนัง ออนไลน์ [IMAX]▷ ดูหนังไทย เกจิ คนฆ่าผี (2024) เต็มเรื่อง ดู-หนัง++ เกจิ คนฆ่าผี (2024) เต็มเรื่อง(Geji: The Spirit Hunter) พากย์ไทย HD +ดู (หนัง!)▷ เกจิ คนฆ่าผี เต็มเรื่องฟรี 2024 พากย์ไทย [Geji: The Spirit Hunter] HD เกจิ คนฆ่าผีเต็มเรื่อง เกจิ คนฆ่าผี เต็มเรื่อง ภาค ไทย เกจิ คนฆ่าผีออกโรงวันไหน เกจิ คนฆ่าผี'' เรื่องเล่า มิ้มเกจิ คนฆ่าผี เกจิ คนฆ่าผีนิยาย เกจิ คนฆ่าผี netflix เกจิ คนฆ่าผี ความหมาย เกจิ คนฆ่าผีเต็มเรื่อง เกจิ คนฆ่าผีออกโรงวันไหน เกจิ คนฆ่าผีหนัง เกจิ คนฆ่าผีเต็มเรื่อง 037 เกจิ คนฆ่าผี hd เกจิ คนฆ่าผี นักแสดง เกจิ คนฆ่าผีเต็มเรื่อง 123 เกจิ คนฆ่าผี เต็มเรื่อง ซูม เกจิ คนฆ่าผี เรื่องย่อ เกจิ คนฆ่าผี รายได้

ดูหนัง Geji: The Spirit Hunter 2024 เกจิ คนฆ่าผี เต็มเรื่อง [HD] พากย์ไทย.เกจิ คนฆ่าผี หนังเต็ม /FILM-THAI | ดูออนไลน์.[1080] เกจิ คนฆ่าผี(2024) หนังเต็ม HD ในภาษาไทย SUB.ดูหนัง เกจิ คนฆ่าผี Geji: The Spirit Hunter (2024) |ออนไลน์ ฟรี| พากย์ไทย.(ดู-หนัง) เกจิ คนฆ่าผี Geji: The Spirit Hunter – 2024 UHD เต็มเรื่อง.(ดู-หนัง) เกจิ คนฆ่าผี *Geji: The Spirit Hunter HD เต็มเรื่อง – พากย์ไทย THAI.เกจิ คนฆ่าผี

หนังออนไลน์ฟรี เกจิ คนฆ่าผี 2024 on IMDb 6.2 ความคมชัด HD ดูหนัง 2024 ดูหนัง หนังใหม่2024 ดูหนัง NETFLIX ดูหนัง ชีวิตจริง Biography ดูหนัง ดูหนังฟรี ดูหนัง ระทึกขวัญ Thriller ดูหนัง สารคดี Documentary ดูหนัง หนังสยองขวัญ Horror ดูหนัง หนังเอเชีย ดูหนัง หนังไทย

จากตำนวนสู่ภาพยนต์ หลังจากที่ “แย้ม” น้องสาวมีอาการเหมือนถูกผีเข้า นับวันก็ยิ่งมีพฤติกรรมแปลก และมันชัดเจนว่านี่ไม่ใช่แย้มคนเดิมที่ครอบครัวรู้จักแล้ว เกิดอะไรขึ้นกับแย้มกันแน่ “เกจิ คนฆ่าผี” มีเจ้าของเรื่องเล่าคือ คุณกิตติศักดิ์ กิตติวิรยานนท์ เป็นผู้ถ่ายทอดเรื่องราวสุดหลอนที่เคยเกิดขึ้นจริงกับครอบครัวสมัยยังเด็ก

ณ เวลานี้ท่านกำลัง ดูหนัง เกจิ คนฆ่าผี 2024 เป็นหนังที่เรียบเรียงเนื้อเรื่องไว้อย่างลงตัวดำเนินเรื่องไม่ช้าไม่เร็วตามความเหมาะสมดูเพลินๆ หนังเรื่องนี้จัดอยู่ในหมวด หนังใหม่2024 NETFLIX ชีวิตจริง Biography ดูหนังฟรี ระทึกขวัญ Thriller สารคดี Documentary หนังสยองขวัญ Horror หนังเอเชีย หนังไทย เราหวังเป็นอย่างยิ่งว่าทุกท่านจะมีความสุขสนุกสนานกับการรับชมภาพยนต์ทุกๆ เรื่องบนเว็บ 24-hd ของเรา หากท่านมีข้อข้องใจหรือสงสัยเกี่ยวกับการใช้งานสามารถ ➲ ติดต่อทีมงานได้ผ่านไลน์หรือที่เมนูติดต่อเรา ขอบคุณคะ

ดูหนังHD เกจิ คนฆ่าผี Geji: The Spirit Hunter เต็มเรื่อง [HD] ไทย 1080p

+ดูหนัง |เกจิ คนฆ่าผีเต็มเรื่อง 2024 THAI IMAX | พากย์ไทย ออนไลน์ฟรี

{.ดู`หนัง.}เกจิ คนฆ่าผี Geji: The Spirit Hunter 29 บาท เต็มเรื่อง 2024 HD/1080p

+เกจิ คนฆ่าผีสตรีมมิ่ง [HD] เต็มเรื่อง 2024

เกจิ คนฆ่าผีGeji: The Spirit Hunter 2024 ออกโรงวันไหน

+เกจิ คนฆ่าผีGeji: The Spirit Hunter เต็มเรื่อง 123 พากย์ไทย 2024 Full HD

+ดู (หนัง!)➲➲ "เกจิ คนฆ่าผี" เต็มเรื่ 2024 พากย์ไทย HD

หนัง>!เกจิ คนฆ่าผีเต็มเรื่องฟรี - พากย์ไทย

ดู-หนัง)เกจิ คนฆ่าผี(2024) เต็มเรื่อง HD/พากย์ไทย 1080p

[.ซูม-HD.]เกจิ คนฆ่าผี(2024) เต็มเรื่อง - ดูหนังออนไลน์ พากย์ไทย

ดู-บาร์บี้เกจิ คนฆ่าผี(2024) เต็มเรื่อง [HD] พากย์ไทย 1080p

[.ดูHD.]เกจิ คนฆ่าผี2024 เต็มเรื่อง HD พากย์ไทย THAI

เกจิ คนฆ่าผี(2024) - ดับแสงรวี เต็มเรื่อง ออนไลน์ [HD] พากย์ไทย

(+ดู-หนัง) เกจิ คนฆ่าผี(2024) เต็มเรื่อง [HD] พากย์ไทย 1080p

(ดู-หนัง)เกจิ คนฆ่าผี– 2024 เต็มเรื่อง HD พากย์ไทย THAI

ดูหนัง] ➜เกจิ คนฆ่าผีGeji: The Spirit Hunter hd 2024 สตรีมมิ่ง

เกจิ คนฆ่าผีGeji: The Spirit Hunter เต็มเรื่องซูม ออนไลน์ฟรี (Thai Sub) 4K UHD

เกจิ คนฆ่าผีGeji: The Spirit Hunter เต็มเรื่อง 037

+เกจิ คนฆ่าผีเต็มเรื่องฟรี 2024 พากย์ไทย

เกจิ คนฆ่าผีGeji: The Spirit Hunter (2024) เต็มเรื่อง พากย์ไทย

เกจิ คนฆ่าผีGeji: The Spirit Hunter เต็มเรื่อง

เกจิ คนฆ่าผีGeji: The Spirit Hunter เต็มเรื่อง ภาค ไทย

เกจิ คนฆ่าผีGeji: The Spirit Hunter ออกโรงวันไหน

เกจิ คนฆ่าผี 26 ตุลาคมนี้ ครั้งแรกของหนังผีไทยบนจอยักษ์ IMAX และ ระบบปกติที่ เมเจอร์ ซีนีเพล็กซ์

เกจิ คนฆ่าผี 2024 สำหรับภาพยนตร์ฟรี

เกจิ คนฆ่าผี 2024 ดูภาพยนตร์

เกจิ คนฆ่าผี 2024 ฟิล์มสมบูรณ์ THAI

เกจิ คนฆ่าผี ออนไลน์อย่างสมบูรณ์ในปี 2024

ด- เกจิ คนฆ่าผี (2024) / หนังใหม่ชนโรง 2024

เกจิ คนฆ่าผี ( 2024 ) Geji: The Spirit Hunter | วิดีโอเป็ด

เกจิ คนฆ่าผี ออนไลน์โดยสมบูรณ์ในปี 2024

เกจิ คนฆ่าผี 2024 สำหรับภาพยนตร์ฟรี

เกจิ คนฆ่าผี 2024 ดูภาพยนตร์

เกจิ คนฆ่าผี 2024 ฟิล์มสมบูรณ์ THAI

เกจิ คนฆ่าผี Geji: The Spirit Hunter เต็ม เรื่อง ซูม

เกจิ คนฆ่าผี Geji: The Spirit Hunter ดูหนังออนไลน์

เกจิ คนฆ่าผี Geji: The Spirit Hunter hd เต็มเรื่อง

เกจิ คนฆ่าผี Geji: The Spirit Hunter เต็มเรื่อง

เกจิ คนฆ่าผี Geji: The Spirit Hunter เต็ม เรื่อง ออนไลน์ พากย์ไทย

เกจิ คนฆ่าผี Geji: The Spirit Hunter 2024 เต็ม เรื่อง ออนไลน์ พากย์ไทย

เกจิ คนฆ่าผี Geji: The Spirit Hunter หนัง เต็มเรื่อง hd พากย์ไทย

เกจิ คนฆ่าผี Geji: The Spirit Hunter หนัง hd เต็มเรื่อง

เกจิ คนฆ่าผี Geji: The Spirit Hunter เต็ม เรื่อง hd

เกจิ คนฆ่าผี Geji: The Spirit Hunter หนัง ออนไลน์ hd

เกจิ คนฆ่าผี Geji: The Spirit Hunter หนัง hd ซูม

gradle compile

I want to know how to make compile like your project
dependencies {
compile 'com.jpardogo.googleprogressbar:library:(latest version)'
}

Main manifest has <uses-sdk android:minSdkVersion='8'> but library uses minSdkVersion='11'

I want to reference the library in my project(https://github.com/snowdream/android-widgets).i get the error as follows.
It seems that the minSdkVersion of my project is 8, but your minSdkVersion is 11.
If your library is avaiable for minSdkVersion 8, can you modify it to minSdkVersion 8,thank you.

[/home/snowdream/workspace/git/android-widgets/lib/src/main/AndroidManifest.xml, /home/snowdream/workspace/git/android-widgets/lib/build/exploded-aar/com.jpardogo.googleprogressbar/library/1.0.0/AndroidManifest.xml:2]   
Main manifest has <uses-sdk android:minSdkVersion='8'> but library uses minSdkVersion='11'

Proguard

If you are using proguard this methods are removed:

  • float getScale() from GoogleMusicDicesDrawable
  • void setScale(float scale) from GoogleMusicDicesDrawable
  • void setRotationAngle(int angle) from NexusRotationCrossDrawable
  • int getRotationAngle() from NexusRotationCrossDrawable

I have to add this line to proguard.cfg:
-keep class com.jpardogo.android.googleprogressbar.** { *; }

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.