程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android-如何找按鈕數組在布局中的橫豎坐標位置?

android-如何找按鈕數組在布局中的橫豎坐標位置?

編輯:編程綜合問答
如何找按鈕數組在布局中的橫豎坐標位置?

我創建了一個按鈕數組,當點擊每一個按鈕時都會調用 onClick 方法。在那個方法中,如何獲得按鈕的位置,比如行和列的位置?
創建 buttons 數組:

LinearLayout layoutVertical = (LinearLayout) findViewById(R.id.liVLayout);
            LinearLayout rowLayout=null;

            LayoutParams param = new LinearLayout.LayoutParams(LayoutParams.FILL_PARENT,LayoutParams.FILL_PARENT,1);

            //Create Button
            for (i = 0; i<6; i++) 
            {
                rowLayout = new LinearLayout(this);
                rowLayout.setWeightSum(7);
                layoutVertical.addView(rowLayout,param);
                for(j=0;j<7;j++)
                {
                    pBtnDay[i][j]=new Button(this);
                    rowLayout.addView(pBtnDay[i][j],param); 

                    pBtnDay[i][j].setOnClickListener(this); 
                }
            }
            return true;

onClick 方法:

    Button b = (Button)view;
    txtDate.setText(b.getText());
    boolean bStartDate=false;

現在onclick方法中,我可以使用 Button b=(Button)view 獲得每個按鈕的文本。如何找按鈕數組在布局中的橫豎坐標位置?

最佳回答:


你可以使用Button.setTag()並保存 jx的值

class ButtonPosition {
     int x,y;
     public ButtonPosition(int x,int y){
       this.x = x;
       this.y = y;
    }
}
  ......
for(j=0;j<7;j++){
     pBtnDay[i][j]=new Button(this);
     rowLayout.addView(pBtnDay[i][j],param); 
     pBtnDay[i][j].setOnClickListener(this);
     //Save the position
     pBtnDay[i][j].setTag(new ButtonPosition(i,j));
}

在 onClick 方法中查找位置

.....
 Button b = (Button)view;
 ButtonPosition p = (ButtonPosition)b.getTag();
 .....
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved