Android初学第83天

Android初学第83天

20_MVVM

代码

BeatBox

Sound.java

package com.bignerdranch.android.beatbox;

public class Sound {
    private String mAssetPath;
    private String mName;

    public Sound(String assetPath) {
        mAssetPath = assetPath;
        String[] components = assetPath.split("/");
        String filename = components[components.length - 1];
        mName = filename.replace(".wav", "");
    }

    public String getAssetPath() {
        return mAssetPath;
    }

    public String getName() {
        return mName;
    }
}

猜你喜欢

转载自www.cnblogs.com/zhouheng0918/p/9215166.html