zoukankan      html  css  js  c++  java
  • LinearLayout布局

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="300dp"
        android:background="#ffff99"
        android:orientation="horizontal"
        android:padding="5dp">
        <!-- 外框是黄色  -->
    
        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="200dp"
            android:layout_weight="1"
            android:layout_gravity="bottom"
            android:gravity="left"
            android:background="#ff0000"
            android:layout_margin="10dp"
            android:padding="10dp"
            android:orientation="vertical">
            <View
                android:layout_width="100dp"
                android:layout_height="100dp"
                android:background="#00ffff">
            </View>
        </LinearLayout>
    
    
        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="200dp"
            android:layout_weight="1"
            android:layout_gravity="top"
            android:gravity="right"
            android:background="#ff0000"
            android:layout_margin="10dp"
            android:padding="10dp"
            android:orientation="vertical">
            <View
                android:layout_width="100dp"
                android:layout_height="100dp"
                android:background="#00ffff">
            </View>
        </LinearLayout>
    
    
    </LinearLayout>

  • 相关阅读:
    supervisord 小记
    linux 查找文件与进程常用命令
    旷世奇坑!!!spring 不能自动注入
    RPM方式安装MySQL5.6
    linux 常见问题&解决方案
    linux下的守护进程
    java 读写properties
    良好的编码规范
    良好的日志记录规范
    两种方式实现适配器
  • 原文地址:https://www.cnblogs.com/qqhfeng/p/7354812.html
Copyright © 2011-2022 走看看