この値を使用しandroid:id=@+id/buttonX
て、どのボタンが押されたかを判断できます。
アクティビティコードで(おそらく)次のようなもの:
private int mButtonPressed = -1;
... heap of code ...
public void pressedButton(View view) {
mButtonPressed = view.getId();
}
// your code from your question
if (mButtonPressed == R.id.buttonX) {
return result to start time TextView;
} else if (mButtonPressed == R.id.buttonY) {
return result to end time TextView;
}
また、ボタンのレイアウト XML には、次のものが含まれていることを確認してください。
<Button
android:id="@+id/buttonX"
android:onclick="pressedButton"
... more attributes ...
/>
<Button
android:id="@+id/buttonY"
android:onclick="pressedButton"
... more attributes ...
/>