DDMS 的全称是Dalvik Debug Monitor
Service,它为程序员提供例如:为测试设备截屏,针对特定的进程查看正在运行的线程以及堆信息、Logcat、广播状态信息、模拟电话呼叫、接收SMS、虚拟地理坐标等等。
eclipse中添加ddms的方法如下:
1、在Eclipse的右上角,选择Perspective,再选择DDMS,Eclipse进入如下布局tools-007
2、在左上角有Devices的页签,选择当前的虚拟机:emulator-5554,显示当前虚拟机的各项内容。在Devices页签的右边,一排快捷方式里面,有个很重要的按钮“Screen Capture”在Devices页签的右边,一排快捷方式里面,有个很重要的按钮高枝御“Screen Capture”
3、最下面的子窗口,就是logcat,查看当前连接的手机的log。最下面的子窗口,就是logcat,查看当前连接的手机的log。
4、最后搭辩,中间的Emulator Control子窗口,介绍一个也是常用戚岩的功能:模拟打电话和收短信。如下图:tools-011
根据慕课网提供的信息,您可以按照以下步骤设置:1、打开eclipse,并在“PackageExplorer”中打开想要进行布局设置的XML文件。
2、在打开的XML文件中,找到要设置为线性布局的视图控件,可以在代码视图中进行明链橡编辑,也可以在“Design”视图中进行编辑。
3、在编辑视图中,找到“Palette”视图,或通过选择“Window”>“ShowView”>“Other”打开它。
4、在“Palette”视图中,找到“Layouts”部分,并选择“LinearLayout”。
5、在编辑视图中,将“LinearLayout”视图控件拖动到所唤桥选视图控件上方或下方,使其成为其直接父控件。可以激旁通过拖动边缘或角落的大小调整手柄来调整“LinearLayout”的大小。
6、在“Properties”视图中,找到“Layout”部分,并选择“Orientation”属性。可以选择垂直或水平方向。
7、现在,可以将其他视图控件拖动到“LinearLayout”控件中。可以通过“Properties”视图中的属性来更改每个视图控件的大小和位置。
8、重复这个过程,直到所有的视图控件都被添加到“LinearLayout”控件中,并完成了布局的设置。
1、散穗扮建议使用相对布局,可以根据父控件来自由布局按钮,例如:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity" >
<Button
android:id="btn_001"
android:layout_width="wrap_content"
android:layout_height="冲灶wrap_content"
android:text="族带中心按钮"
android:layout_centerParent="true"
/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="上面按钮"
android:layout_centerHorizontal="true"
android:layout_above="@+id/btn_001"
/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="下面按钮"
android:layout_centerHorizontal="true"
android:layout_below="@+id/center_btn"
/>
</RelativeLayout>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)