九块九

 1 public class MainActivity extends FragmentActivity {
 2
 3     private SlidingMenu mSlidingMenu;
 4
 5     @Override
 6     protected void onCreate(Bundle savedInstanceState) {
 7         super.onCreate(savedInstanceState);
 8         requestWindowFeature(Window.FEATURE_NO_TITLE);
 9         setContentView(R.layout.activity_main);
10
11         int screenWidth = getResources().getDisplayMetrics().widthPixels;
12
13         mSlidingMenu = new SlidingMenu(this);
14         mSlidingMenu.setMenu(R.layout.empty_left_menu);
15         mSlidingMenu.setTouchModeAbove(SlidingMenu.TOUCHMODE_FULLSCREEN);
16         mSlidingMenu.setBehindWidth((int) (screenWidth * 0.73f));
17         mSlidingMenu.setMode(SlidingMenu.LEFT);
18         mSlidingMenu.setBackgroundResource(R.drawable.left_fra_bg);
19         mSlidingMenu.setTranslateZoonMode(true);
20         mSlidingMenu.attachToActivity(this, 0);
21
22         FragmentTransaction ft = getSupportFragmentManager().beginTransaction();
23         ft.replace(R.id.left_empty_layout, new LeftMenuFragment());
24         ft.replace(R.id.content_empty_layout, new ContentFragment());
25         ft.commit();
26     }
27 }
 1 public class LeftMenuFragment extends Fragment {
 2
 3     @Override
 4     public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
 5         return inflater.inflate(R.layout.fgm_left, container, false);
 6     }
 7
 8     @Override
 9     public void onActivityCreated(Bundle savedInstanceState) {
10         super.onActivityCreated(savedInstanceState);
11
12         View view = getView();
13
14         view.findViewById(R.id.btn1);
15     }
16 }
 1 public class ContentFragment extends Fragment implements OnCheckedChangeListener {
 2
 3     @Override
 4     public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
 5         return inflater.inflate(R.layout.fgm_content, container, false);
 6     }
 7
 8     @Override
 9     public void onActivityCreated(Bundle savedInstanceState) {
10         super.onActivityCreated(savedInstanceState);
11
12         View view = getView();
13
14         ((RadioButton) view.findViewById(R.id.jiujiu)).setOnCheckedChangeListener(this);
15         ((RadioButton) view.findViewById(R.id.buy)).setOnCheckedChangeListener(this);
16         ((RadioButton) view.findViewById(R.id.good)).setOnCheckedChangeListener(this);
17         ((RadioButton) view.findViewById(R.id.me)).setOnCheckedChangeListener(this);
18     }
19
20     @Override
21     public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
22
23     }
24 }
  1 <?xml version="1.0" encoding="utf-8"?>
  2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3     android:layout_width="match_parent"
  4     android:layout_height="match_parent"
  5     android:orientation="vertical"
  6     android:paddingBottom="22dp"
  7     android:paddingLeft="18dp"
  8     android:paddingRight="12dp"
  9     android:paddingTop="35dp" >
 10
 11     <TextView
 12         android:layout_width="match_parent"
 13         android:layout_height="wrap_content"
 14         android:background="@drawable/left_fra_search_bg"
 15         android:gravity="center_vertical"
 16         android:text="点击搜索"
 17         android:textColor="@android:color/darker_gray" />
 18
 19     <LinearLayout
 20         android:layout_width="match_parent"
 21         android:layout_height="wrap_content"
 22         android:layout_marginTop="17dp"
 23         android:orientation="horizontal" >
 24
 25         <Button
 26             android:id="@+id/btn1"
 27             android:layout_width="0dp"
 28             android:layout_height="wrap_content"
 29             android:layout_weight="1"
 30             android:background="@drawable/left_btn_selector"
 31             android:drawablePadding="5dp"
 32             android:drawableTop="@drawable/ico1"
 33             android:paddingBottom="9dp"
 34             android:paddingTop="9dp"
 35             android:text="TOP"
 36             android:textColor="@android:color/darker_gray"
 37             android:textSize="13sp" />
 38
 39         <Button
 40             android:id="@+id/btn2"
 41             android:layout_width="0dp"
 42             android:layout_height="wrap_content"
 43             android:layout_weight="1"
 44             android:background="@drawable/left_btn_selector"
 45             android:drawablePadding="5dp"
 46             android:drawableTop="@drawable/ico2"
 47             android:paddingBottom="9dp"
 48             android:paddingTop="9dp"
 49             android:text="数码"
 50             android:textColor="@android:color/darker_gray"
 51             android:textSize="13sp" />
 52
 53         <Button
 54             android:id="@+id/btn3"
 55             android:layout_width="0dp"
 56             android:layout_height="wrap_content"
 57             android:layout_weight="1"
 58             android:background="@drawable/left_btn_selector"
 59             android:drawablePadding="5dp"
 60             android:drawableTop="@drawable/ico3"
 61             android:paddingBottom="9dp"
 62             android:paddingTop="9dp"
 63             android:text="女装"
 64             android:textColor="@android:color/darker_gray"
 65             android:textSize="13sp" />
 66     </LinearLayout>
 67
 68     <LinearLayout
 69         android:layout_width="match_parent"
 70         android:layout_height="wrap_content"
 71         android:layout_marginTop="6dp"
 72         android:orientation="horizontal" >
 73
 74         <Button
 75             android:id="@+id/btn4"
 76             android:layout_width="0dp"
 77             android:layout_height="wrap_content"
 78             android:layout_weight="1"
 79             android:background="@drawable/left_btn_selector"
 80             android:drawablePadding="5dp"
 81             android:drawableTop="@drawable/ico4"
 82             android:paddingBottom="9dp"
 83             android:paddingTop="9dp"
 84             android:text="男装"
 85             android:textColor="@android:color/darker_gray"
 86             android:textSize="13sp" />
 87
 88         <Button
 89             android:id="@+id/btn5"
 90             android:layout_width="0dp"
 91             android:layout_height="wrap_content"
 92             android:layout_weight="1"
 93             android:background="@drawable/left_btn_selector"
 94             android:drawablePadding="5dp"
 95             android:drawableTop="@drawable/ico5"
 96             android:paddingBottom="9dp"
 97             android:paddingTop="9dp"
 98             android:text="家具"
 99             android:textColor="@android:color/darker_gray"
100             android:textSize="13sp" />
101
102         <Button
103             android:id="@+id/btn6"
104             android:layout_width="0dp"
105             android:layout_height="wrap_content"
106             android:layout_weight="1"
107             android:background="@drawable/left_btn_selector"
108             android:drawablePadding="5dp"
109             android:drawableTop="@drawable/ico6"
110             android:paddingBottom="9dp"
111             android:paddingTop="9dp"
112             android:text="母婴"
113             android:textColor="@android:color/darker_gray"
114             android:textSize="13sp" />
115     </LinearLayout>
116
117     <LinearLayout
118         android:layout_width="match_parent"
119         android:layout_height="wrap_content"
120         android:layout_marginTop="6dp"
121         android:orientation="horizontal" >
122
123         <Button
124             android:id="@+id/btn7"
125             android:layout_width="0dp"
126             android:layout_height="wrap_content"
127             android:layout_weight="1"
128             android:background="@drawable/left_btn_selector"
129             android:drawablePadding="5dp"
130             android:drawableTop="@drawable/ico7"
131             android:paddingBottom="9dp"
132             android:paddingTop="9dp"
133             android:text="鞋包"
134             android:textColor="@android:color/darker_gray"
135             android:textSize="13sp" />
136
137         <Button
138             android:id="@+id/btn8"
139             android:layout_width="0dp"
140             android:layout_height="wrap_content"
141             android:layout_weight="1"
142             android:background="@drawable/left_btn_selector"
143             android:drawablePadding="5dp"
144             android:drawableTop="@drawable/ico8"
145             android:paddingBottom="9dp"
146             android:paddingTop="9dp"
147             android:text="配饰"
148             android:textColor="@android:color/darker_gray"
149             android:textSize="13sp" />
150
151         <Button
152             android:id="@+id/btn9"
153             android:layout_width="0dp"
154             android:layout_height="wrap_content"
155             android:layout_weight="1"
156             android:background="@drawable/left_btn_selector"
157             android:drawablePadding="5dp"
158             android:drawableTop="@drawable/ico9"
159             android:paddingBottom="9dp"
160             android:paddingTop="9dp"
161             android:text="没装"
162             android:textColor="@android:color/darker_gray"
163             android:textSize="13sp" />
164     </LinearLayout>
165
166     <LinearLayout
167         android:layout_width="match_parent"
168         android:layout_height="wrap_content"
169         android:layout_marginTop="6dp"
170         android:orientation="horizontal" >
171
172         <Button
173             android:id="@+id/btn10"
174             android:layout_width="0dp"
175             android:layout_height="wrap_content"
176             android:layout_weight="1"
177             android:background="@drawable/left_btn_selector"
178             android:drawablePadding="5dp"
179             android:drawableTop="@drawable/ico10"
180             android:paddingBottom="9dp"
181             android:paddingTop="9dp"
182             android:text="美食"
183             android:textColor="@android:color/darker_gray"
184             android:textSize="13sp" />
185
186         <Button
187             android:id="@+id/btn11"
188             android:layout_width="0dp"
189             android:layout_height="wrap_content"
190             android:layout_weight="1"
191             android:background="@drawable/left_btn_selector"
192             android:drawablePadding="5dp"
193             android:drawableTop="@drawable/ico11"
194             android:paddingBottom="9dp"
195             android:paddingTop="9dp"
196             android:text="百货"
197             android:textColor="@android:color/darker_gray"
198             android:textSize="13sp" />
199
200         <Button
201             android:id="@+id/btn12"
202             android:layout_width="0dp"
203             android:layout_height="wrap_content"
204             android:layout_weight="1"
205             android:background="@drawable/left_btn_selector"
206             android:drawablePadding="5dp"
207             android:drawableTop="@drawable/ico12"
208             android:paddingBottom="9dp"
209             android:paddingTop="9dp"
210             android:text="手机充值"
211             android:textColor="@android:color/darker_gray"
212             android:textSize="13sp" />
213     </LinearLayout>
214
215     <RelativeLayout
216         android:layout_width="match_parent"
217         android:layout_height="match_parent"
218         android:paddingLeft="30dp" >
219
220         <CheckBox
221             android:layout_width="wrap_content"
222             android:layout_height="wrap_content"
223             android:layout_alignParentBottom="true"
224             android:button="@null"
225             android:drawablePadding="17dp"
226             android:drawableRight="@drawable/browse_selector"
227             android:text="浏览模式"
228             android:textColor="@android:color/darker_gray"
229             android:textSize="18sp" />
230     </RelativeLayout>
231
232 </LinearLayout>
 1 <?xml version="1.0" encoding="utf-8"?>
 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3     android:layout_width="match_parent"
 4     android:layout_height="match_parent"
 5     android:orientation="vertical" >
 6
 7     <FrameLayout
 8         android:id="@+id/content"
 9         android:layout_width="match_parent"
10         android:layout_height="0dp"
11         android:layout_weight="1" >
12     </FrameLayout>
13
14     <RadioGroup
15         android:layout_width="match_parent"
16         android:layout_height="65dp"
17         android:background="@drawable/tabbar_bg"
18         android:orientation="horizontal" >
19
20         <RadioButton
21             android:id="@+id/jiujiu"
22             android:layout_width="0dp"
23             android:layout_height="match_parent"
24             android:layout_weight="1"
25             android:background="@drawable/tab_selector"
26             android:button="@null"
27             android:drawablePadding="3dp"
28             android:drawableTop="@drawable/tab_jiujiu"
29             android:gravity="center"
30             android:padding="10dp"
31             android:text="九块九"
32             android:textColor="@android:color/white"
33             android:textSize="13sp" />
34
35         <RadioButton
36             android:id="@+id/buy"
37             android:layout_width="0dp"
38             android:layout_height="match_parent"
39             android:layout_weight="1"
40             android:background="@drawable/tab_selector"
41             android:button="@null"
42             android:drawablePadding="3dp"
43             android:drawableTop="@drawable/tab_buy"
44             android:gravity="center"
45             android:padding="10dp"
46             android:text="超值购"
47             android:textColor="@android:color/white"
48             android:textSize="13sp" />
49
50         <RadioButton
51             android:id="@+id/good"
52             android:layout_width="0dp"
53             android:layout_height="match_parent"
54             android:layout_weight="1"
55             android:background="@drawable/tab_selector"
56             android:button="@null"
57             android:drawablePadding="3dp"
58             android:drawableTop="@drawable/tab_good"
59             android:gravity="center"
60             android:padding="10dp"
61             android:text="值得买"
62             android:textColor="@android:color/white"
63             android:textSize="13sp" />
64
65         <RadioButton
66             android:id="@+id/me"
67             android:layout_width="0dp"
68             android:layout_height="match_parent"
69             android:layout_weight="1"
70             android:background="@drawable/tab_selector"
71             android:button="@null"
72             android:drawablePadding="3dp"
73             android:drawableTop="@drawable/tab_me"
74             android:gravity="center"
75             android:padding="10dp"
76             android:text="我的"
77             android:textColor="@android:color/white"
78             android:textSize="13sp" />
79     </RadioGroup>
80
81 </LinearLayout>
时间: 2024-09-28 22:16:39

九块九的相关文章

趣玩|OMG!原来眼妆还能这么玩!-淘惠多九块九包邮网(http://www.taohuiduo.com)

当美妆新手们还在握着眼线笔眼影刷战战兢兢地往眼睛上画,当眼妆达人们还在尝试各种渐变色以及做电视剧女猪脚仿妆时,以色列的Tal Peleg早已领先了若干身位,将眼皮当做画布,在眉毛与眼窝处画出一张又一张美丽的图案,令人惊叹. 精湛的工笔,神奇的技术,Tel Peleg就是如此令人惊奇.她不仅眼妆技艺神乎其神,而且本人长得也很漂酿. 如此惊艳而绚丽的孔雀眼妆,配上紫色的假发,或许是她搭配得太好了,这样的妆容看上去一点儿也不违和. 浏览Tel Peleg的facebook,可以发现,她的很多眼妆作品是

3个动作,摆脱扁平臀-淘惠多九块九包邮网(http://www.taohuiduo.com)

小编每回推荐的这些训练臀部的动作,不管是意志训练.深蹲.抬腿.有氧训练,都是在让你成长为更好的自己.其实,锻炼臀部是很有意义的.它不止于塑形,更多地,是提升你整体的健康水平.为什么这么说?借用某个臀部训练专业人士的话说,臀部的训练可以减少你的疲劳感,你的背部疼痛,膝盖关节的健康,让全身都变得强健. 今天的三个臀部训练动作,可以帮你摆脱扁平臀,还能给你健康的身体,佳人们要花时间锻炼哟- ① 单腿深蹲 站姿,双脚分开与臀同宽,抬起右脚.曲左膝,臀部向后,保持1秒,然后马上回到上面的动作.下蹲时,右腿

孕期食欲差,营养师帮你壮壮胃-淘淘实惠多-专注九块九

怀孕了胃口变差,这是很多准妈妈都很苦恼的事情,有的人甚至吃什么都反胃,那么,怎样才能让胃口变好一点呢? 女性怀孕后,受孕酮分泌增加的影响,消化系统功能发生一系列的变化,如胃肠道蠕动减慢,胃排空及食物肠道停留时间延长,孕妈咪易出现饱胀感和便秘.孕期消化液和消化酶分泌减少,易出现消化不良:由于贲门括约肌松弛,胃内容物可逆流入食道下部,引起烧心或反胃.以上种种消化功能的改变,可导致孕妈咪出现以消化道症状为主的妊娠反应,如恶心.呕吐.食欲下降等.另一方面,随着子宫内胎宝贝的成长,子宫会将胃推向上方,使胃

使劲爆料!修车换件省大钱-淘惠多九块九包邮网(http://www.taohuiduo.com)

开始今天的话题.汽车在使用过程中,会因为各种原因更换零件,但去了修理厂有许多名词,什么原厂件.副厂件.正厂件或者拆车件甚至是翻新件等等,他们到底有什么区别? 首先汽车零件可以先笼统的分为两大类,新件和旧件. 而这里面这还有很多门道,咱们先从新件开始讲起: 新件 1.原厂件 推荐指数:★★★ 这个其实是最好理解的,出自厂商渠道.无论是外包装还是零件上,都带有厂商logo,正规4S店维修一般都用的原厂件,但是零件价格高,工时费高这个谁都知道.但就是有保障,修完了都有单据,那原厂件都有编码,真出问题你

网红淘宝店的成与败

近年来,随着直播的人气火热上升,越来越多的网红出现在我们的眼前.很多人都想成为网红,为什么呢?因为他们有人气,有喜欢自己的粉丝,而他们能通过这些粉丝和人气来获取利益,例如通过自己的人气接广告或卖东西给喜欢自己的粉丝.这就是为什么淘宝里有越来越多的网红店,他们通过自身的人气效应给自己打广告,在直播或博客中秀出自己店里的商品. 想要了解网红淘宝店的成与败,我们先来谈论网红淘宝店的运营方式.网红淘宝店当然老板是网红,但其实在幕后有一个操作团体,他们不仅起到封装网红的作用,还帮他们进货出货,网红只要负责

主持人如何练发声?

播音专业:表演,声乐,节目主持人概论,新闻写作,普通话水平测度,化妆学,主持人能力培训,篮球,电视前辑,视听语言.播音主持概论.新闻学概论.传播学概论:3.专业基础课,包括普通话语音.发声基础.语言表达能力.如果所学为配音专业.双语播音专业等,还会开设相应的配音课程.新闻英语听力.英语口语表达等.4.实践课,以播音实践为主,包括影视化妆.形体课.各类主持课程.表演课程.播音导论.播音发声学.播音技巧.主持艺术.礼仪形体学.艺术概论.新闻概论.大众传播学.节目策划.表演.声乐.电视导播.中国传媒大

烧钱时代终结!O2O还能玩啥花样?

        最终的最终,饱受亏损.烧钱玩补贴等争议的美团还是追随滴滴/快的.赶集/58的步伐,与大众点评愉快的在一起了!美团和大众点评作为O2O行业的领军企业,都因为不堪忍受持续地投入却不见回报的模式而不得不放低姿态,采取合并的形式来降低成本,那对于中小型乃至初创020企业来说,更是在一定程度上证明烧钱大战不具备可持续性. 随着融资越来越难,以烧钱补贴换市场的做法越来越不可取.这种某种程度上违背市场经济运行.价值规律的非常规手段,将迅速成为过去式.简单.粗暴的烧钱时代终结,意味着O2O行业将

| 教你美 | BAD GIRL风格当道 深褐色眼妆秋季最HIT

MISS A成员孟佳在最新一期杂志大片中演绎了坏女孩风,深褐色眼影既柔美又不失个性,下面就跟小编来学习下坏女孩风眼妆的化妆技巧吧. MISS A成员孟佳在最新一期杂志大片中演绎了坏女孩风,深褐色眼影既柔美又不失个性. 坏女孩妆容解构 与以往韩妆风格不同,太浓重的粗黑眼线要被淘汰,而塑造出迷离感眼神的深褐色或卡其色眼影即将流行起来!化妆包里若是没有这类颜色要赶快去补货了喔!如果喜欢韩风妆容的女生可以察觉到咬唇妆容依然在韩国深受追捧,粗黑的眉毛也被柔和自然的棕色眉毛而取代! [ONE.深褐色眼影]

3招迅速打造好气色 新学期男神一定撩到手!

挚爱的.深爱的.恋恋难舍的寒假就这样悄悄地离我们而去了,你是否还是“无心”更“无颜”进入学习模式?快点让肌肤恢复活力满满的状态吧!Up精气神,好好学习天天向上,更不惧与男神狭路相逢! 1.洁面后补水 Get嘭润美肌 清洁后,在毛孔饱水状态给肌肤补充水润能量是最有效的,将化妆水倒入手心,均匀涂抹全脸后再以包覆方式以脸颊.额头到下巴的方向轻轻按压全脸:然后双手轻握拳,以第二指节部分轻压颧骨,检验肌肤是否富含水分,如果感觉干涩则可以再重复一遍化妆水拍拍步骤. 2.精华大方 Get润泽肤质 假期各种旅行