使用Android layout_weight的方法

来源:爱站网时间:2021-02-02编辑:网友分享
是不是很多用户们都不知道怎样使用Android layout_weight呢?那么接下来的内容中我们就跟爱站小编一起去看看使用Android layout_weight的方法。

是不是很多用户们都不知道怎样使用Android layout_weight呢?那么接下来的内容中我们就跟爱站小编一起去看看使用Android layout_weight的方法。

直接上代码和图片。

情况一:
[html]

 


    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >

            android:id="@+id/titles"
        android:layout_width="0dip"
        android:layout_height="match_parent"
        android:layout_weight="1"
        class="com.a2bgeek.fragmentdemo.TitlesFragment" />

            android:id="@+id/details"
        android:layout_width="0dip"
        android:layout_height="match_parent"
        android:layout_weight="2" >
   
 

 


    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >

            android:id="@+id/titles"
        android:layout_width="0dip"
        android:layout_height="match_parent"
        android:layout_weight="1"
        class="com.a2bgeek.fragmentdemo.TitlesFragment" />

            android:id="@+id/details"
        android:layout_width="0dip"
        android:layout_height="match_parent"
        android:layout_weight="2" >
   

 


    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >

            android:id="@+id/titles"
        android:layout_width="0dip"
        android:layout_height="match_parent"
        android:layout_weight="1"
        class="com.a2bgeek.fragmentdemo.TitlesFragment" />

            android:id="@+id/details"
        android:layout_width="0dip"
        android:layout_height="match_parent"
        android:layout_weight="2" >
   

 

 

情况2:

[html]

 


    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >

            android:id="@+id/titles"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        class="com.a2bgeek.fragmentdemo.TitlesFragment" />

            android:id="@+id/details"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="2" >
   
 

 


    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >

            android:id="@+id/titles"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        class="com.a2bgeek.fragmentdemo.TitlesFragment" />

            android:id="@+id/details"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="2" >
   

 

 

 

情况三:

Fragment这个东西在wrap_content的情况下会占据全部,和控件不太一样。

上文就是小编介绍使用Android layout_weight的方法,大家不妨可以尝试一下。只要你去发现,去努力,没有什么是不可能的。

上一篇:使用android WakeLock的代码

下一篇:显示Android ListView数据绑定的解决方法

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载