1. 程式人生 > >反編譯魅族工具箱App實現翻硬幣

反編譯魅族工具箱App實現翻硬幣

一、說明

       在這篇自定義View之指南針(反編譯別人的程式碼實現)文章中,我們通過反編譯魅族工具箱的應用,實現了其指南針的效果,魅族工具箱裡面有好幾個比較實用工具,比如測量尺、水平儀、隨機事件等。這篇文章分析一下其隨機事件的實現。

二、介面初步分析

首先看一下魅族翻硬幣的截圖效果:

點選硬幣後,會有一段翻轉硬幣的動畫,動畫結束後會顯示硬幣的翻轉結果。由於不知道csdn怎麼上傳視訊,這裡就上傳圖片了。

用hierarchy view檢視介面佈局:

在介面上看到了一個VideoView控制元件,這個控制元件一般是用來播放視訊的,本來我以為翻轉硬幣也是自定義的View,看了想多了,其實就是一個ViewView在播放視訊。

三、反編譯Apk檢視程式碼實現

具體反編譯過程可以檢視自定義View之指南針(反編譯別人的程式碼實現)

這裡我們用jadx開啟工具箱apk,搜尋CoinVideoActivity,結果如下:

程式碼基本沒有混淆,將對應的程式碼和使用到的資源拷貝到自己的工程中,稍作修改即可執行。

CoinVideoActivity

import android.content.Context;
import android.content.ContextWrapper;
import android.media.MediaPlayer;
import android.media.MediaPlayer.OnCompletionListener;
import android.net.Uri;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.WindowManager;
import android.widget.TextView;
import android.widget.VideoView;

import com.liunian.androidbasic.R;

import java.util.Random;

public class CoinVideoActivity extends AppCompatActivity {
    private View mEmptyView;
    private boolean mIsPause = true;
    private TextView mTextView;
    private VideoView mVideoView;

    private class OnCoinClickListener implements OnClickListener {
        private OnCoinClickListener() {
        }

        public void onClick(View view) {
            CoinVideoActivity.this.startAnimation(); // 播放翻轉硬幣視訊
        }
    }

    protected void onCreate(Bundle bundle) {
        super.onCreate(bundle);
        setContentView(R.layout.activity_coin_vedio);
        // 設定預設的視窗背景為空,減少繪製
        getWindow().setBackgroundDrawable(null);
        // 隱藏標題欄和狀態列
        getSupportActionBar().hide();
        getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
        this.mIsPause = true;
        init();
    }

    private void init() {
        this.mTextView = (TextView) findViewById(R.id.coin_desc); // 提示文字
        this.mVideoView = (VideoView) findViewById(R.id.video_view); // 播放視訊控制元件
        this.mVideoView.setOnCompletionListener(new OnCompletionListener() { // 視訊播放完成後的監聽
            public void onCompletion(MediaPlayer mediaPlayer) {
                CoinVideoActivity.this.mEmptyView.setOnClickListener(new OnCoinClickListener()); // 視訊播放完成後再次給mEmptyView繫結監聽事件
            }
        });
        this.mEmptyView = findViewById(R.id.empty_view); // mEmptyView是一個透明的View,通過點選它開始播放視訊
        this.mEmptyView.setOnClickListener(new OnCoinClickListener());
    }

    private void startInitAnimation() { // 設定mVideoView最開始的視訊(很短,相當於一張圖片)
        this.mVideoView.setVideoURI(Uri.parse("android.resource://" + getPackageName() + "/" + R.raw.coininit));
        this.mVideoView.start();
    }

    // 播放翻轉硬幣視訊
    private void startAnimation() {
        String str;
        if (new Random().nextInt(2) == 0) { // 生成0或1的隨機數,如果為0則播放臉朝上的視訊
            str = "android.resource://" + getPackageName() + "/" + R.raw.coinvideo1;
        } else { // 如果為1則表示字朝上,播放字朝上的視訊
            str = "android.resource://" + getPackageName() + "/" + R.raw.coinvideo2;
        }
        this.mVideoView.setVideoURI(Uri.parse(str));
        this.mVideoView.start();
        this.mEmptyView.setOnClickListener(null); // 開始播放視訊或將mEmptyView的點選事件設定為空,避免重複播放視訊
    }

    protected void onResume() {
        super.onResume();
        if (this.mIsPause) {
            this.mTextView.setText(getResources().getString(R.string.coin_click_text));
            startInitAnimation();
            this.mIsPause = false;
        }
    }

    protected void onPause() {
        super.onPause();
        this.mIsPause = true;
    }

    protected void attachBaseContext(Context context) {
        super.attachBaseContext(new ContextWrapper(context) {
            public Object getSystemService(String str) {
                if ("audio".equals(str)) {
                    return getApplicationContext().getSystemService(str); // 使用ApplicationContext來獲得服務,避免記憶體洩露
                }
                return super.getSystemService(str);
            }
        });
    }
}

activity_coin_vedio

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <VideoView
        android:id="@+id/video_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_centerInParent="true"
        android:clickable="true" />

    <View
        android:id="@+id/empty_view"
        android:layout_width="150dp"
        android:layout_height="150dp"
        android:layout_centerInParent="true"
        android:background="@android:color/transparent" />

    <TextView
        android:id="@+id/coin_desc"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:fontFamily="sans-serif-medium"
        android:paddingTop="400dp"
        android:textColor="#51ffffff" />
</RelativeLayout>

具體的翻轉硬幣的視訊資源可以在魅族工具箱apk中找。