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!”

  • 相关阅读:
    AC日记——接苹果 洛谷 P2690
    AC日记——友好城市 洛谷 P2782
    AC日记——栈 洛谷 P1044
    AC日记——L国的战斗之间谍 洛谷 P1916
    AC日记——[USACO1.1]坏掉的项链Broken Necklace 洛谷 P1203
    AC日记——[USACO1.5]数字三角形 Number Triangles 洛谷 P1216
    Codevs 1048 石子归并
    Codevs 1138 聪明的质监员 2011年NOIP全国联赛提高组
    HDU 1575 Tr A
    Codevs 5059 一起去打CS
  • 原文地址:https://www.cnblogs.com/xinyuyuanm/p/3089422.html
Copyright © 2011-2022 走看看