zoukankan      html  css  js  c++  java
  • 情况控件Android layout_weight用法图解

    时间紧张,先记一笔,后续优化与完善。

        直接上代码和图片。

        情况一:

    <?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="match_parent"
        android:orientation="horizontal" >
    
        <fragment
            android:id="@+id/titles"
            android:layout_width="0dip"
            android:layout_height="match_parent"
            android:layout_weight="1"
            class="com.a2bgeek.fragmentdemo.TitlesFragment" />
    
        <FrameLayout
            android:id="@+id/details"
            android:layout_width="0dip"
            android:layout_height="match_parent"
            android:layout_weight="2" >
        </FrameLayout>
    
    </LinearLayout>

        情况和控件

        情况2:

        每日一道理
    爱心是一片照射在冬日的阳光,使贫病交迫的人感到人间的温暖;爱心是一泓出现在沙漠里的泉水,使濒临绝境的人重新看到生活的希望;爱心是一首飘荡在夜空的歌谣,使孤苦无依的人获得心灵的慰藉。
    <?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="match_parent"
        android:orientation="horizontal" >
    
        <fragment
            android:id="@+id/titles"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            class="com.a2bgeek.fragmentdemo.TitlesFragment" />
    
        <FrameLayout
            android:id="@+id/details"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="2" >
        </FrameLayout>
    
    </LinearLayout>

        情况和控件

        情况三:

        Fragment这个货色在wrap_content的情况下会占领全部,和控件不太一样。

        对于一般的控件来讲,可以参考http://blog.csdn.net/jincf2011/article/details/6598256

    文章结束给大家分享下程序员的一些笑话语录: 一位程序员去海边游泳,由于水性不佳,游不回岸了,于是他挥着手臂,大声求.救:“F1,F1!”

  • 相关阅读:
    Max Sum of Max-K-sub-sequence(单调队列)
    Matrix Swapping II(求矩阵最大面积,dp)
    重温世界杯(贪心)
    Pie(求最小身高差,dp)
    Matrix(多线程dp)
    Python 实现自动导入缺失的库
    分布式系统session一致性解决方案
    数据结构 【链表】
    【数字图像处理】gamma变换
    【数字图像处理】顶帽变换和底帽变换
  • 原文地址:https://www.cnblogs.com/xinyuyuanm/p/3089422.html
Copyright © 2011-2022 走看看