السلام عليكم ورحمة الله
كيف اجعل for loop يزيد عدة او أكثر مع كل ضغطة على الزر في الاندرويد استوديو
private int mCurentIndex = 0;
private List<String> mNames;
private TextView mTextView;
protected void onCreate(Bundle instance){
super.onCreate(instance);
findViewById(R.id.button).setOnClickListener(
new OnClickListener(){
public void onClick(View v){
mTextView.setText(mNames.get(mCurentIndex));
}
}
);
mTextView = findViewById(R.id.text_view);
}
شيء شبيه لهذا
التعليقات