0

Facebook の APK から loader.gif を抽出する必要がありますか?

ここに画像の説明を入力

私はこのアニメーションが好きです =(

4

2 に答える 2

-1

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)

于 2013-10-16T10:27:48.373 に答える