在Android中,要動態地向ViewSwitcher添加視圖,您需要執行以下步驟:
build.gradle
文件中添加以下依賴項:dependencies {
implementation 'androidx.viewpager:viewpager:1.0.0'
}
activity_main.xml
),添加ViewSwitcher元素:<ViewSwitcher
android:id="@+id/viewSwitcher"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:inAnimation="@android:anim/slide_in_left"
android:outAnimation="@android:anim/slide_out_right">
</ViewSwitcher>
MainActivity.java
)中,獲取ViewSwitcher實例并創建要添加的視圖。例如,您可以創建兩個按鈕并將它們添加到ViewSwitcher中:import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.ViewSwitcher;
import androidx.appcompat.app.AppCompatActivity;
public class MainActivity extends AppCompatActivity {
private ViewSwitcher viewSwitcher;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
viewSwitcher = findViewById(R.id.viewSwitcher);
// 創建兩個按鈕
Button button1 = new Button(this);
button1.setText("Button 1");
Button button2 = new Button(this);
button2.setText("Button 2");
// 將按鈕添加到ViewSwitcher中
viewSwitcher.addView(button1);
viewSwitcher.addView(button2);
// 設置ViewSwitcher的切換監聽器
viewSwitcher.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
viewSwitcher.setDisplayedChild((viewSwitcher.getDisplayedChild() + 1) % 2);
}
});
}
}
在這個例子中,我們創建了兩個按鈕并將它們添加到ViewSwitcher中。我們還設置了一個點擊監聽器,當用戶點擊ViewSwitcher時,它會切換到下一個視圖。這里我們使用setDisplayedChild()
方法來切換視圖。