WEB开发网
开发学院手机开发Android 开发 Android RelativeLayout总结 阅读

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="

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的时候

上一页  1 2 

Tags:Android RelativeLayout 总结

编辑录入:coldstar [复制链接] [打 印]
赞助商链接