当前位置: 代码迷 >> Android >> 安卓开发知识点学习笔记
  详细解决方案

安卓开发知识点学习笔记

热度:21   发布时间:2016-04-28 03:19:53.0
安卓开发知识点学习笔记!

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>





  相关解决方案