如何在android 中添加行断点

如何在android 中添加行断点,第1张

方法/步骤

在需要大断点的地方,即行号的右侧一点,点击鼠标左键。就打上了断点。

点击右上角的 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

运行效果:


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/7912245.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-11
下一篇 2023-04-11

发表评论

登录后才能评论

评论列表(0条)

保存