I need to extract the loader.gif from APK of Facebook it is possible?
I like this animation =(
I need to extract the loader.gif from APK of Facebook it is possible?
I like this animation =(
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
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