Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android帶參數的BUTTON

Android帶參數的BUTTON

編輯:關於Android編程

public class ParamButton extends Button
{
	
	private int  mParam;
	
	public ParamButton(Context context)
	{
		super(context);
	}
	
    public ParamButton(Context context, AttributeSet attributeSet)
    {  
        super(context, attributeSet);  
        // TODO Auto-generated constructor stub  
    }  
	
	void setIntParam(int p)
	{
		mParam = p;
	}
	
	int getIntParam()
	{
		return mParam;
	}
}

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved