Question

I need to extract the loader.gif from APK of Facebook it is possible?

enter image description here

I like this animation =(

Was it helpful?

Solution

Try to open the Facebook apk with a zip-tool like WinRar or 7zip. You can navigate through the folders then.

If you don't find the gif, there are many websites like http://www.ajaxload.info/ where you can generate such gifs.

Maybe you should have a look at this question, too. Reverse engineering from an APK file to a project

OTHER TIPS

Add facebookImage to your drawable folder write the following code in splash.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
>
<ImageView
    android:id = "@+id/facebookImage"
    android:layout_width = "fill_parent"
    android:layout_height = "fill_parent"
    android:scaleType = "fitXY"     
    android:contentDescription="@string/decriptionImage"
    />    
<ProgressBar
    android:layout_centerInParent="true"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">
   </ProgressBar></RelativeLayout>

and setContentView(R.layout.splash) in an Activity which you want

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top