博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用android:layout_weight解决布局时把按纽压到屏幕外的问题
阅读量:5263 次
发布时间:2019-06-14

本文共 1460 字,大约阅读时间需要 4 分钟。

<?
xml version="1.0" encoding="utf-8"
?>
<
RelativeLayout 
xmlns:android
="http://schemas.android.com/apk/res/android"
    android:layout_width
="fill_parent"
    android:layout_height
="fill_parent"
    android:orientation
="vertical"
 
>
    
<
Gallery 
        
android:id
="@+id/gallery"
        android:layout_width
="fill_parent"
        android:layout_height
="70px"
        
/>
    
    
<
GridView 
           
android:id
="@+id/gridview"
    
           android:layout_width
="fill_parent"
     
           android:layout_height
="fill_parent"
   
           android:columnWidth
="90px"
   
           android:numColumns
="auto_fit"
    
           android:verticalSpacing
="2dp"
    
           android:horizontalSpacing
="2dp"
   
           android:stretchMode
="columnWidth"
    
           android:gravity
="center"
           
           android:layout_below
="@id/gallery"
           
/>
    
    
<
LinearLayout
        
android:id
="@+id/linesexshow"
        android:layout_width
="fill_parent"
           android:layout_height
="fill_parent"
           android:layout_below
="@id/gallery"
           android:orientation
="vertical"
           android:visibility
="gone"
        
>
        
        
<
ImageView 
            
android:id
="@+id/ivsexshow"
            android:layout_width
="fill_parent"
     
            android:layout_height
="0dp"
 
            android:layout_centerHorizontal
="true"
            android:visibility
="gone"
            android:scaleType
="fitCenter"
            android:layout_weight
="100"
            
/>
        
<
Button 
            
android:id
="@+id/btnback"
            android:layout_width
="fill_parent"
            android:layout_height
="wrap_content"
            android:text
="@string/btnback"
            android:visibility
="gone"
            android:layout_centerHorizontal
="true"
            android:layout_weight
="1"
            
/>
        
        
    
</
LinearLayout
>
</
RelativeLayout
>

转载于:https://www.cnblogs.com/zziss/archive/2012/02/11/2346230.html

你可能感兴趣的文章
kill新号专题
查看>>
MVC学习系列——Model验证扩展
查看>>
C# GC 垃圾回收机制
查看>>
mysqladmin 修改和 初始化密码
查看>>
字符串
查看>>
vue2.x directive - 限制input只能输入正整数
查看>>
实现MyLinkedList类深入理解LinkedList
查看>>
自定义返回模型
查看>>
C#.NET 大型通用信息化系统集成快速开发平台 4.1 版本 - 客户端多网络支持
查看>>
HDU 4122
查看>>
Suite3.4.7和Keil u3自带fx2.h、fx2regs.h文件的异同
查看>>
打飞机游戏【来源于Crossin的编程教室 http://chuansong.me/account/crossincode 】
查看>>
理解git对象
查看>>
[LeetCode] Merge Intervals
查看>>
【翻译自mos文章】当点击完 finishbutton后,dbca 或者dbua hang住
查看>>
Apache配置反向代理、负载均衡和集群(mod_proxy方式)
查看>>
Linux编程简介——gcc
查看>>
一种高效的序列化方式——MessagePack
查看>>
2019年春季学期第四周作业
查看>>
2019春第十周作业
查看>>