我在Android Studio之前正在研究不同的代碼網站,以及他們如何在第二個活動中打開按鈕與此處不同。到目前爲止,我有我的第二個活動按鈕,它會打開..如何在第二個活動中打開多個按鈕?
我fifthactivity.java低於
Button button;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.fifth_layout);
Button button = (Button) findViewById(R.id.button10);
button.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
Intent intent = new Intent(FifthActivity.this, AmazonActivity.class);
FifthActivity.this.startActivity(intent);
}
});
}
}
我明白我需要一個新的.java和新的佈局引導按鈕,我只需要幫助代碼放入我的第五activity.java
下面是我的佈局,我需要打開其他按鈕。
<Button
tools:ignore="HardcodedText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="PlayStation"
android:drawableLeft="@drawable/playstation"
android:drawableStart="@drawable/playstation"
android:layout_weight="0.07"
android:textSize="35sp"
android:id="@+id/button5" />
我不確定我是否理解您的問題。你想打開你目前的活動嗎? –
@AmandaBrito我想從我的fifthactivity.java中的另一個按鈕打開一個新的活動我已經有一個按鈕打開「亞馬遜」,但我有另一個按鈕,我想要打開。 – Porzingis
那麼,從我的理解你想要在同一個佈局中有幾個按鈕來打開多個屏幕?你可以改變你的佈局,使其具有像RelativeLayout這樣的容器,並且放置儘可能多的按鈕。在你的活動中,你可以訪問這些按鈕並打開你想要的屏幕,就像你在上面發佈的那樣。這有幫助嗎? –