我需要从 Facebook 的 APK 中提取 loader.gif 可能吗?
我喜欢这个动画=(
尝试使用 WinRar 或 7zip 等 zip 工具打开 Facebook apk。然后,您可以浏览文件夹。
如果您没有找到 gif,有很多网站,例如http://www.ajaxload.info/,您可以在其中生成此类 gif。
也许你也应该看看这个问题。从 APK 文件逆向工程到项目
将facebookImage添加到您的可绘制文件夹中,在 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>
和你想要的活动中的setContentView(R.layout.splash)