Pergunta

Estou a seguir os padrões que são utilizados na Bússola exemplo, em um projeto novo e ter a maior parte da lógica de trabalho.No entanto, quando eu toque, enquanto o meu cartão ao vivo é apresentado eu ouvir o "clique" do ruído, mas o meu menu de atividade não exibir.Eu acho que eu estou faltando um pedaço do quebra-cabeça, mas eu não tenho sido capaz de descobrir o que ainda.

Quando eu toque, além de um clique, eu também vejo isso no logcat:

01-08 10:02:26.796: I/ActivityManager(196): START {flg=0x10008000 cmp=com.example.speeddisplay/.SpeedDisplayMenuActivity} from pid -1

Assim, parece que deve ser o início de minha atividade, mas ele não aparece.Aqui estão algumas peças do código relevante...embora eu não estou certo de onde o problema está.

Serviço porção AndroidManifest.xml:

    <service
        android:name="com.example.speeddisplay.service.SpeedService"
        android:enabled="true"
        android:icon="@drawable/ic_drive_50"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="com.google.android.glass.action.VOICE_TRIGGER" />
        </intent-filter>

        <meta-data
            android:name="com.google.android.glass.VoiceTrigger"
            android:resource="@xml/voiceinput_speeddisplay" />
    </service>

onStartCommand método em SpeedService.java:

@Override
public int onStartCommand(Intent intent, int flags, int startId) {
    if (Constants.DEBUG) {
        Log.d(TAG, "onStartCommand");
    }
    if (liveCard == null) {
        liveCard = timelineManager.createLiveCard(LIVE_CARD_ID);
        speedRenderer = new SpeedRenderer(this, speedManager);
        liveCard.setDirectRenderingEnabled(true);
        liveCard.getSurfaceHolder().addCallback(speedRenderer);

        // Display the options menu when the live card is tapped.
        Intent menuIntent = new Intent(this, SpeedDisplayMenuActivity.class);
        menuIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
        liveCard.setAction(PendingIntent.getActivity(this, 0, menuIntent, 0));
        liveCard.publish(PublishMode.REVEAL);

        if(Constants.DEBUG){
            Log.d(TAG, "liveCard published");
        }
    }

    return START_STICKY;

}

Aqui é o meu SpeedDisplayMenuActivity.java.Nenhum destes métodos estão recebendo chamada.

public class SpeedDisplayMenuActivity extends Activity {

private SpeedService.SpeedBinder speedService;
private boolean mResumed;

private ServiceConnection mConnection = new ServiceConnection() {
    @Override
    public void onServiceConnected(ComponentName name, IBinder service) {
        if (Constants.DEBUG) {
            Log.e("Service Stuff", "Service connected.");
        }
        if (service instanceof SpeedService.SpeedBinder) {
            speedService = (SpeedService.SpeedBinder) service;
            openOptionsMenu();
        }
        if (Constants.DEBUG) {
            Log.e("Service Stuff", "service was an instance of " + service.getClass().getName());
        }
    }

    @Override
    public void onServiceDisconnected(ComponentName name) {
        // Do nothing.
    }
};

@Override
protected void onCreate(Bundle savedInstanceState) {
    if(Constants.DEBUG){
        Log.e("Menu", "Created.");
    }
    super.onCreate(savedInstanceState);
    bindService(new Intent(this, SpeedService.class), mConnection, 0);
}

@Override
protected void onResume() {
    if(Constants.DEBUG){
        Log.e("Menu", "Resumed.");
    }
    super.onResume();
    mResumed = true;
    openOptionsMenu();
}

@Override
protected void onPause() {
    if(Constants.DEBUG){
        Log.e("Menu", "Paused.");
    }
    super.onPause();
    mResumed = false;
}

@Override
public void openOptionsMenu() {
    if (Constants.DEBUG) {
        Log.e("Options Menu", "Open");
    }
    if (mResumed && speedService != null) {
        if (Constants.DEBUG) {
            Log.e("Options Menu", "Open with correct params");
        }
        super.openOptionsMenu();
    } else {
        if (Constants.DEBUG) {
            Log.e("Options Menu", "Open with INCORRECT params");
        }
    }
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    if (Constants.DEBUG) {
        Log.e("Options Menu", "Created");
    }
    getMenuInflater().inflate(R.menu.speed, menu);
    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    if (Constants.DEBUG) {
        Log.e("Options Menu", "Item Selected");
    }
    switch (item.getItemId()) {
    // case R.id.read_aloud:
    // mCompassService.readHeadingAloud();
    // return true;
    case R.id.stop:
        if (Constants.DEBUG) {
            Log.e("Options Menu", "Stop");
        }
        stopService(new Intent(this, SpeedService.class));
        return true;
    default:
        return super.onOptionsItemSelected(item);
    }
}

@Override
public void onOptionsMenuClosed(Menu menu) {
    if (Constants.DEBUG) {
        Log.e("Options Menu", "Closed");
    }
    super.onOptionsMenuClosed(menu);

    unbindService(mConnection);

    // We must call finish() from this method to ensure that the activity
    // ends either when an
    // item is selected from the menu or when the menu is dismissed by
    // swiping down.
    finish();
}

Alguém vê o que eu estou ausente?

Foi útil?

Solução

Que é direito, declarando a SpeedDisplayMenuActivity é o problema neste caso.

Já vi casos em que muitos outros tipos de exceções / crash, que normalmente acontece no ambiente Android é normalmente tratada em Vidro.

Que é definitivamente bom para a experiência do usuário, mas faz pouco difícil no desenvolvimento.Espero que algum tipo de definições de vir, no futuro, permitir exceções bem no futuro!

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top