我正在創建一個文字遊戲應用程序,我創建了一個由按鈕組成的網格視圖。當我在網格視圖中單擊一個按鈕時,會打開一個包含所有英文字母的彈出窗口。現在,當我在彈出窗口中單擊任何字母時,我希望該字母出現在我的網格中,即我的彈出窗口按鈕中的字符串必須出現在我的網格視圖的按鈕中。 , 我該怎麼做?如何獲取按鈕的文本值並將其加載到Android中的另一個按鈕中
這是我的按鈕的代碼:
button1.setOnClickListener(new View.OnClickListener()
{
@Override
public void onClick(View v) {
layoutInflater = (LayoutInflater) getApplicationContext().getSystemService(LAYOUT_INFLATER_SERVICE);
View container = layoutInflater.inflate(R.layout.activity_popup,null);
popupWindow = new PopupWindow(container,800,1100,true);
popupWindow.showAtLocation(constraintLayout, Gravity.NO_GRAVITY,150,400);
b1=(Button) findViewById(R.id.b1);
String s1 = b1.getText().toString();
button1.setText(s1);
container.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View view, MotionEvent motionevent){
popupWindow.dismiss();
return true;
}
});
}
});
我的彈出窗口的代碼:
b1.setOnClickListener(new View.OnClickListener()
{
@Override
public void onClick(View v)
{
String s1 = "A";
overridePendingTransition(android.R.anim.fade_in, android.R.anim.fade_out);
finish();
}
});
應用程序的截圖
This is my grid layout where the user must enter the letters
When I click any button on the grid this is the pop up window which is displayed.
如果我運行它,應用程序會停止。
添加錯誤日誌 –
添加您的logcat。 –
我對Android開發非常陌生,所以請詳細解釋一下。 –