赞
踩
图片资源导入/res/drawable目录下
自定义颜色在/res/values/color.xml中添加
.xml文件都在/res/layout目录下
LinearLayout下调用top.xml,FrameLayout控件,button.xml
<include layout="@layout/top"/>
<FrameLayout
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1">
</FrameLayout>
<include layout="@layout/button"/>
LinearLayout下调用TextView控件,显示首页标题
<TextView
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:text="我的微信"
android:textColor="@color/white"
android:textSize="40sp" />
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。