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>
  • 相关阅读:
    K8S-安全机制
    K8S-Service
    K8S-Pod资源管理
    K8S-kubelet启动过程
    每日进度
    每日进度
    每日进度
    每日进度
    每日进度
    归纳及计划
  • 原文地址:https://www.cnblogs.com/ArRan/p/2649388.html
Copyright © 2011-2022 走看看