仿拉手团购App2--当前城市选择Activity_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > 仿拉手团购App2--当前城市选择Activity

仿拉手团购App2--当前城市选择Activity

 2017/5/16 5:33:35  ganchuanpu  程序员俱乐部  我要评论(0)
  • 摘要:首页中点击城市TextView调转到当前城市选择Activityfragment_city.xml<RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"android:layout_height="match_parent"android:background="@color/city_item_bg"><
  • 标签:团购 Activity APP

首页中点击城市TextView调转到当前城市选择Activity

fragment_city.xml

class="brush:java;gutter:true;"><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:background="@color/city_item_bg" >

    <EditText
        android:id="@+id/city_et_search"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="10dp"
        android:padding="10dp"
        android:drawableLeft="@drawable/wb_search_icon"
        android:drawablePadding="5dp"
        android:hint="@string/input_city_to_search"
        android:background="@drawable/edittext_selector"/>

    <RelativeLayout
        android:id="@+id/city_fra_content_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/city_et_search">

        <android.support.v7.widget.RecyclerView
            android:id="@+id/city_rv_city_list"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_toLeftOf="@+id/city_sidebar"/>

        <TextView
            android:id="@+id/city_tv_show"
            android:layout_width="80dp"
            android:layout_height="80dp"
            android:layout_centerInParent="true"
            android:background="@android:color/darker_gray"
            android:gravity="center"
            android:textColor="#ffffffff"
            android:textSize="30dp"
            android:visibility="gone" />

        <android.support.v7.widget.RecyclerView
            android:id="@+id/city_rv_search_result"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_toLeftOf="@+id/city_sidebar"
            android:visibility="gone"/>

        <TextView
            android:id="@+id/city_tv_no_result"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:text="@string/not_find_city"
            android:visibility="gone"/>

        <com.myxh.coolshopping.ui.widget.SidebarView
            android:id="@+id/city_sidebar"
            android:layout_width="25dp"
            android:layout_height="match_parent"
            android:layout_alignParentRight="true"
            android:layout_marginRight="2dp"
            android:layout_marginTop="7dp" />
    </RelativeLayout>

</RelativeLayout>

  

 

上一篇: 详解Google Chrome浏览器(操作篇)(下) 下一篇: 没有下一篇了!
发表评论
用户名: 匿名