切换城市xml

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/city_aqi_show"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorPrimary">

<ImageView
android:id="@+id/bing_pic_img"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"/>

<android.support.v4.widget.DrawerLayout
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/swipe_refresh"
android:layout_width="match_parent"
android:layout_height="match_parent">

<ScrollView
android:id="@+id/cityAQI_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="none"
android:overScrollMode="never">

<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true">
<include layout="@layout/title"/>
<include layout="@layout/city_aqi_info"/>
<include layout="@layout/city_rank"/>
</LinearLayout>

</ScrollView>

</android.support.v4.widget.SwipeRefreshLayout>

<fragment
android:id="@+id/choose_area_fragment"
android:name="nubia.cn.cityaqi.ChooseCityFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="start"/>
</android.support.v4.widget.DrawerLayout>

</FrameLayout>

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/choose_city"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="150dp"
android:padding="10dp"
android:background="#2E2E2E">
<de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/icon_image"
android:layout_width="70dp"
android:layout_height="70dp"
android:src="@drawable/nav_icon"
android:layout_centerInParent="true"/>

<TextView
android:id="@+id/username"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/mail"
android:text="何春江"
android:textColor="#FFF"
android:textSize="14sp"/>

<TextView
android:id="@+id/mail"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:text="[email protected]"
android:textColor="#FFF"
android:textSize="14sp"/>
</RelativeLayout>

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="60dp"
android:padding="10dp"
android:background="#2E2E2E">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="1"
android:text="我的城市"
android:textSize="25dp"
android:textColor="#fff"/>

<ImageButton
android:id="@+id/add_city"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:background="@drawable/add_city_button"
android:layout_weight="10" />

</LinearLayout>

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="10dp"
android:background="#2E2E2E">
<TextView
android:id="@+id/location"
android:layout_width="62dp"
android:layout_height="wrap_content"
android:layout_marginLeft="6dp"
android:textSize="18dp"
android:textColor="#fff"/>
<ImageView
android:layout_width="20dp"
android:layout_height="20dp"
android:background="@drawable/location"
android:layout_gravity="center"/>
</LinearLayout>

<ListView
android:id="@+id/myCites_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#2E2E2E"/>

</LinearLayout>

时间: 2024-10-12 12:33:19

切换城市xml的相关文章

C#学习笔记-中英文切换(XML)

这几天因为软件需要加英文版本,所以查了好久的资料找到了相关的信息,原资料参考:http://blog.csdn.net/softimite_zifeng 上网查的中英文切换大约有两种方式:1.动态加载资源文件2.做XML用来保存控件名,以及控件的内容,最后选择用XML来学习. XML预备知识 先来一点XML的预备知识吧:https://www.ibm.com/developerworks/cn/xml/x-newxml/#list1 XML是可扩展标记语言(Extensible Markup L

php实现城市切换

<?php /* */ //??è?ip /*include_once('./qqwry.php'); $QQWry=new QQWry;  function get_real_ip(){ $ip=false; if(!empty($_SERVER["HTTP_CLIENT_IP"])){ $ip = $_SERVER["HTTP_CLIENT_IP"]; } if (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) { $i

纯CSS弹出层,城市切换效果

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>纯CSS弹出层效果</title> <meta http-equiv="Content-Type" content="text

【百度地图API】暑假放假回老家——城市切换功能

原文:[百度地图API]暑假放假回老家--城市切换功能 任务描述: 酸奶小妹放寒假啦,要从北京呼啦一下飞回重庆呢.现在百度地图API上不能直接切换城市,怎么办呢? 如何实现: 利用API先搜索到要去城市,然后再让搜索到的城市显示在地图中心点. (百度地图上的实现方式是,给后端一个请求,后端返回该城市的经纬度) 图示: 运行代码:请点击这里 代码: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" &quo

【百度地图API】关于如何进行城市切换的三种方式

原文:[百度地图API]关于如何进行城市切换的三种方式 摘要:本文介绍了三种切换城市的方式:查询城市.城市列表和显示城市轮廓. --------------------------------------------------------------------- 很多API爱好者问到我,如何像百度地图那样,实现各个城市之间的切换呢? 在这里,公布以下三种方式. 第一种,是查询城市的方法.使用API接口的LocalSearch方法.我之前写过完整的文章,请查看: http://www.cnbl

XML应用之Web Service

1.什么是web service? Service:服务,在电脑安装一个软件(程序),可以为我们提供某些功能,就可以称之为服务.本地服务比较多. Web:和本地相对应,在互联网上的. Web Service,通过互联网来提供某种服务,本质就是通过网络调用其他网站的资源. 本地服务的缺陷: (1) 本地资源不足:很多数据和资料,本地得不到,只有向其他网站要. (2)成本因素:本地提供服务,往往是不经济的,使用专业网站的服务更便宜. (3)可移植性差. Web Service的优势: (1)平台无关

利用oxygen编辑并生成xml文件,并使用JAVA的JAXB技术完成xml的解析

首先下载oxygen软件(Oxygen XML Editor),目前使用的是试用版(可以安装好软件以后get trial licence,获得免费使用30天的权限,当然这里鼓励大家用正版软件!!!) 1 首先建立一个空白XML文件,直接点击下图所示即可: 2 可以使用xml文本编辑界面,或者使用xml树状图编辑界面 切换到xml树状图编辑界面的方法为: 即可调出当前xml文件所对应的xml树状图编辑界面 3 设计并编辑xml文件 根据自己的需要可以利用xml树状图操作界面来方便的设计自己的xml

点击之后变色,还切换背景

1,新建xml文件存放到drawble目录下 切换颜色 <?xml version="1.0" encoding="utf-8"?><selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:color="@color/black" android:state_checked="t

js Tab切换效果

1 var tabs=function(){ 2 function tag(name,elem){ 3 return (elem||document).getElementsByTagName(name); 4 } 5 //获得相应ID的元素 6 function id(id){ 7 return document.getElementById(id); 8 } 9 function first(elem){ 10 elem=elem.firstChild; 11 return elem&&