android 开发自适应布局

这几天研究了一下Android开发。单位要求的开发多个分辨率版本的app,所以研究了一下Android自适应分辨率的布局。

基本上都是组件的长宽用等比例变量来表示。贴出以下代码

<LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="0dp"
            android:layout_weight="57"
            android:gravity="center" >
        </LinearLayout>

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="0dp"
            android:layout_weight="128"
            android:gravity="center"
            android:orientation="vertical"
            android:weightSum="1280" >

            <TextView
                android:layout_width="0dp"
                android:layout_height="fill_parent"
                android:layout_weight="185"
                android:text="" />

            <Button
                android:id="@+id/Buttonadd"
                android:layout_width="0dp"
                android:layout_height="fill_parent"
                android:layout_weight="128"
                android:background="@drawable/n_01" />

            <TextView
                android:layout_width="0dp"
                android:layout_height="fill_parent"
                android:layout_weight="69"
                android:text="" />

            <Button
                android:id="@+id/Buttoncheck"
                android:layout_width="0dp"
                android:layout_height="fill_parent"
                android:layout_weight="128"
                android:background="@drawable/n_01" />

            <TextView
                android:layout_width="0dp"
                android:layout_height="fill_parent"
                android:layout_weight="69"
                android:text="" />

            <Button
                android:id="@+id/Buttoncase"
                android:layout_width="0dp"
                android:layout_height="fill_parent"
                android:layout_weight="128"
                android:background="@drawable/n_01" />

            <TextView
                android:layout_width="0dp"
                android:layout_height="fill_parent"
                android:layout_weight="69"
                android:text="" />

            <Button
                android:id="@+id/Buttoncompany"
                android:layout_width="0dp"
                android:layout_height="fill_parent"
                android:layout_weight="128"
                android:background="@drawable/n_01" />

            <TextView
                android:layout_width="0dp"
                android:layout_height="fill_parent"
                android:layout_weight="185"
                android:text="" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="0dp"
            android:layout_weight="94"
            android:gravity="center" >
        </LinearLayout>

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="0dp"
            android:layout_weight="128"
            android:gravity="center"
            android:orientation="vertical"
            android:weightSum="1280" >
        </LinearLayout>

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="0dp"
            android:layout_weight="94"
            android:gravity="center" >
        </LinearLayout>

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="0dp"
            android:layout_weight="128"
            android:gravity="center"
            android:orientation="vertical"
            android:weightSum="1280" >
        </LinearLayout>

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="0dp"
            android:layout_weight="94"
            android:gravity="center" >
        </LinearLayout>

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="0dp"
            android:layout_weight="71"
            android:gravity="center" >
        </LinearLayout>

<LinearLayout android:layout_width="fill_parent" android:layout_height="0dp" android:layout_weight="128" android:gravity="center" android:orientation="vertical" android:weightSum="1280" >

将垂直的线性布局等比分为1280 份,

<TextView android:layout_width="0dp" android:layout_height="fill_parent" android:layout_weight="185" android:text="" />

用android:layout_weight 属性设置 TextView占父空间的185份,而不是将TextView的高度写死。这样就可以自适应TextView的高度。在1280*800的分辨率下 TextView的高度是185dp 而在其它的分辨率下TextView的高度就会等比缩放。

转载于:https://www.cnblogs.com/zhangdb/p/3643359.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值