zoukankan      html  css  js  c++  java
  • mono for android Main.axml

    //------------------------------------------------------------------------------
    // <auto-generated>
    //     This code was generated by a tool.
    //     Runtime Version:2.0.50727.4952
    //
    //     Changes to this file may cause incorrect behavior and will be lost if
    //     the code is regenerated.
    // </auto-generated>
    //------------------------------------------------------------------------------
    
    namespace AndroidApplication
    {
    
    
        public partial class Resource
        {
    
            public partial class Attribute
            {
    
                private Attribute()
                {
                }
            }
    
            public partial class Drawable
            {
    
                // aapt resource value: 0x7f020000
                public const int Icon = 2130837504;
    
                private Drawable()
                {
                }
            }
    
            public partial class Id
            {
    
                // aapt resource value: 0x7f050000
                public const int MyButton = 2131034112;
    
                private Id()
                {
                }
            }
    
            public partial class Layout
            {
    
                // aapt resource value: 0x7f030000
                public const int Main = 2130903040;
    
                private Layout()
                {
                }
            }
    
            public partial class String
            {
    
                // aapt resource value: 0x7f040001
                public const int ApplicationName = 2130968577;
    
                // aapt resource value: 0x7f040000
                public const int Hello = 2130968576;
    
                private String()
                {
                }
            }
        }
    }

    design

    code

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical">
        <Button
            android:id="@+id/MyButton"
            android:layout_width="321.3dp"
            android:layout_height="wrap_content"
            android:text="@string/Hello" />
    </LinearLayout>
  • 相关阅读:
    程序的循环结构
    异常处理
    java中多态的使用
    java中String类型的相关知识
    java中类与对象
    java中部分知识点的验证实现
    java 中递归的实现 以及利用递归方法实现汉诺塔
    java 枚举类型和数据二进制等问题思考
    简单的java程序通过对话框输出 计算加减乘除运算(运算方法可选择)
    大道至简第二章读后感
  • 原文地址:https://www.cnblogs.com/ArRan/p/2649388.html
Copyright © 2011-2022 走看看