在需要大断点的地方,即行号的右侧一点,点击鼠标左键。就打上了断点。
点击右上角的 debug方式运行
在左下角,单击圈出的图标,找到debug,单击。就打开了下面的debug界面。接着就可以按照以前的方式进行断点调试了
安卓在Button上添加两行文字
mian.xml代码:<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" ><TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/hello" /> <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical" android:clickable="true" android:focusable="true" android:background="@android:drawable/btn_default"> <TextView android:text="100" android:layout_width="fill_parent" android:gravity="center_horizontal" android:layout_height="wrap_content" android:layout_weight="1"/> <TextView android:text="次数" android:layout_width="fill_parent" android:layout_height="wrap_content" android:gravity="center_horizontal" android:textColor="#FFD700" android:layout_weight="1"/> </LinearLayout></LinearLayout
运行效果:
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)