zoukankan      html  css  js  c++  java
  • d

     1 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     2     android:id="@+id/linearLayout1"
     3     android:layout_width="fill_parent"
     4     android:layout_height="fill_parent"
     5     android:orientation="horizontal" >
     6     <SurfaceView
     7         android:id="@+id/mySurfaceView"
     8         android:layout_width="fill_parent"
     9         android:layout_height="fill_parent"
    10         android:layout_weight="1" />
    11     <LinearLayout
    12         android:layout_width="fill_parent"
    13         android:layout_height="fill_parent"
    14         android:gravity="center"
    15         android:layout_weight="9"
    16         android:background="#daa520"
    17         android:orientation="vertical" >
    18         <Button
    19             android:id="@+id/button01"
    20             android:textColor="#ffff00"
    21             android:layout_width="60dip"
    22             android:layout_height="60dip"
    23             android:background="@drawable/backgroundselector"/>
    24         <Button
    25             android:id="@+id/button03"
    26             android:layout_width="60dip"
    27             android:layout_height="60dip"
    28             android:background="@drawable/btn_camera_record_light_inactive" 
    29             android:layout_marginTop="60dip"/>
    30         <Button
    31             android:id="@+id/button04"
    32             android:layout_width="60dip"
    33             android:layout_height="60dip"
    34             android:background="@drawable/share" 
    35             android:layout_marginTop="60dip"/>
    36     </LinearLayout>
    37 </LinearLayout>
  • 相关阅读:
    [Trie][并查集]JZOJ 5822 量子纠缠
    [模拟]JZOJ 5820 非法输入
    SAM模板
    [树形DP]JZOJ 5819 大逃杀
    [MST][dij]JZOJ 5818 做运动
    [暴力]JZOJ 5817 抄代码
    [概率期望][树形DP][LCA]JZOJ 5814 树
    认证组件
    注册接口
    视图家族 & 路由组件
  • 原文地址:https://www.cnblogs.com/GoAhead/p/3006905.html
Copyright © 2011-2022 走看看