Android UI 开发
2010-04-20 05:12:00 来源:WEB开发网核心提示:private GraphableButton mButtons;mButtons = (GraphableButton) findViewById(R.id.button0);mButtons.setOnClickListener(this); //设置一个按下事件监听mButtons.setVisibility(V
private GraphableButton mButtons;
mButtons = (GraphableButton) findViewById(R.id.button0);
mButtons.setOnClickListener(this); //设置一个按下事件监听
mButtons.setVisibility(View.INVISIBLE); //设置当前按钮不可见
mButtons.setText("android123.com欢迎您");
mButtons.setValues(0,100);
mButtons.setVisibility(View.VISIBLE); //设置按钮可见
下面在layout.xml中如何写呢,这里要写上自己程序完整的package name才能正确被adt识别,相关的具体定义如下:
< com.android123.cwjTest.GraphableButton
android:id="@+id/button7"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp"
android:layout_marginBottom="4dp"
android:layout_weight="1" / >
更多精彩
赞助商链接