码迷,mamicode.com
首页 > 移动开发 > 详细

安卓开发知识点学习笔记!

时间:2014-12-17 20:52:29      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:安卓   layout   android   apk   布局   

1、变量存储位置:【res】--【values】-【string.xml】

2、布局界面:【res】/【layout】/【activity_main.xml】,


<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.demo_1aaa.MainActivity"
    tools:ignore="MergeRootFrame" >

        
    
    <LinearLayout 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:orientation="vertical" 
        > 
        
        
        <EditText 
            android:layout_width="fill_parent" 
            android:layout_height="wrap_content" 
            /> 
            
    </LinearLayout> // 文本框
    <LinearLayout 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:orientation="horizontal" 
        android:gravity="right" 
        > 
    <!-- android:gravity="right"表示Button组件向右对齐 --> 
        <Button 
            android:layout_height="wrap_content" 
            android:layout_width="wrap_content" 
            android:text="确定" 
            /> 
        <Button 
            android:layout_height="wrap_content" 
            android:layout_width="wrap_content" 
            android:text="取消" 
            />    
     </LinearLayout> <span style="font-family: Arial, Helvetica, sans-serif;">// 按钮</span>



        
        
</FrameLayout>





安卓开发知识点学习笔记!

标签:安卓   layout   android   apk   布局   

原文地址:http://blog.csdn.net/dxnn520/article/details/41986875

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!