zoukankan      html  css  js  c++  java
  • 关于地图首页会卡 button background惹的祸


    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:sat="http://schemas.android.com/apk/res-auto"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        >
    
        <FrameLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            >
    
    
            <com.esri.android.map.MapView
                android:id="@+id/map"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:layout_alignParentLeft="true"
                initExtent="-13042576 3854531 -13026007 3870439"
                >
            </com.esri.android.map.MapView>
        </FrameLayout>
            <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:paddingBottom="@dimen/activity_vertical_margin"
                android:paddingLeft="@dimen/activity_horizontal_margin"
                android:paddingRight="@dimen/activity_horizontal_margin"
                android:paddingTop="@dimen/activity_vertical_margin"
                >
                <LinearLayout
                    android:layout_width="fill_parent" android:layout_height="55dp"
                    android:orientation="horizontal"
                    android:background="@drawable/search_shape"
                    android:id="@+id/l1"
                    >
                    <Button android:id="@+id/search_main"
                        android:layout_width="fill_parent"
                        android:layout_weight="1"
                        android:paddingLeft="10.0dip"
                        android:layout_height="match_parent"
                        android:background="@drawable/searchimg"
                        android:clickable="true"
                        />
                    <Button android:id="@+id/search_video"
                        android:layout_width="fill_parent"
                        android:layout_weight="6"
                        android:layout_height="match_parent"
                        android:background="@drawable/iconfont_yuyin"
                        android:clickable="true"
                        />
                </LinearLayout>
                <LinearLayout
                    android:layout_width="wrap_content"
                    android:layout_height="fill_parent"
                    android:orientation="vertical"
                    android:layout_gravity="right"
                    android:layout_alignParentRight="true"
                    android:layout_below="@id/l1"
                    android:id="@+id/l2">
                <Button
                    android:layout_width="48dp"
                    android:layout_height="48dp"
                    android:id="@+id/font_up"
                    android:layout_marginTop="80dp"
                    android:background="@drawable/floor_up"
                    android:clickable="true"
                    />
    
                    <Button
                        android:layout_width="48dp"
                        android:layout_height="48dp"
                        android:text="1"
                        android:id="@+id/font_middle"
                        android:textSize="20sp"
                        android:textStyle="bold"
                        android:gravity="center_vertical|center_horizontal"
                        android:clickable="true"
                        android:background="#ffcee3ff" />
                <Button
                    android:layout_width="48dp"
                    android:layout_height="48dp"
                    android:id="@+id/font_down"
                    android:clickable="true"
                    android:background="@drawable/floor_down"
                    />
    
            </LinearLayout>
    
    
                    <com.example.weixing.SatelliteMenu
                        android:id="@+id/menu"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_gravity="bottom|left"
                        sat:satelliteDistance="170dp"
                        sat:mainImage="@drawable/ic_launcher"
                        sat:totalSpacingDegree="90"
                        sat:closeOnClick="true"
                        sat:expandDuration="500"
                        android:layout_alignParentBottom="true"
                        android:layout_alignParentLeft="true"
                        android:layout_alignParentStart="true" />
    
    
            </RelativeLayout>
    
    
    
    
    </RelativeLayout>
    

    不知道 那个button 的背景图是 1024x1024的, 以为 在button里面限定了 范围就自动压缩了,  结果虽然是自动压缩了 (能看到图片全景)  但是mapview会受影响,不知道为毛,图片改成100x100的就ok了

    版权声明:本文为博主原创文章,未经博主允许不得转载。

  • 相关阅读:
    原生JS(类、原型、构造函数)
    原生JS(cookie操作的封装)
    原生JS(cookie)
    原生JS(异步请求)
    原生js(1)
    iframe框架嵌套页面(全屏,页面上下左右有空白,去双滚动条)
    Zabbix4.0监控Nginx1.16
    Nginx1.16访问限制
    django.core.exceptions.ImproperlyConfigured: mysqlclient 1.3.13 or newer is required; you have 0.9.3.
    Zabbix4.0解决中文乱码
  • 原文地址:https://www.cnblogs.com/france/p/4808559.html
Copyright © 2011-2022 走看看