我是使用AndEngine的Android应用程序开发人员。我有一个问题是制作一个搜索条来控制声音的音量。如何在应用程序运行时创建搜索栏?
答案 0 :(得分:0)
我以这种方式实施了搜索栏:
public void updateTimerProgress(float width) {
if( progressBar != null){
progressBar.detachSelf();
}
progressBar = new Sprite(-0.2f, 0, Utility.getTexRegFromTexPack(ShooterTexPack.YELLOWBAR_ID, activity.shooterTexPack) , activity.getVertexBufferObjectManager());
progressBar.setWidth(width);
emptyProgressBarBg.attachChild(progressBar);
}
我正在根据我的时间间隔进行更新。