Android RelativeLayout总结
2010-08-23 05:10:00 来源:WEB开发网android:layout_height="wrap_content"
android:background="#ffffff"
android:layout_below="@id/label"
/>
< Button android:id="@+id/btnOk"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/txt"
android:layout_alignParentRight="true"
android:layout_marginLeft="10dip"
android:text="√"/>
< Button android:id="@+id/btnCancel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom ="true"
android:layout_alignParentLeft ="true"
android:layout_alignBaseline="@id/btnOk"
android:layout_toLeftOf="@id/btnOk"
android:layout_alignWithParentIfMissing="true"
android:text="X"/>
< /RelativeLayout>
view source
print?
01 super.onCreate(savedInstanceState);
02
03 setContentView(R.layout.main);
04
05 Button btn = (Button)findViewById(R.id.btnOk);
06
07 btn.setOnClickListener(newView.OnClickListener() {
08
09 public void onClick(View v) {
10
11 v.setVisibility(View.GONE);
12
13 }
14 });
当值为true的时候点击后的效果
当设为false的时候
Tags:Android RelativeLayout 总结
编辑录入:coldstar [复制链接] [打 印]更多精彩
赞助商链接