首先,先和大家说个对不起先,昨天太赶啦,一时没说清楚昨天的内容,其实昨天还有一些UI的知识点还没讲的,而且那个代码也是有一点问题的,所以今天把它补回来
我们先讲一下,昨天忘记说了的内容
其实昨天忘记说了的就是那个自定义标题栏那里啦
自定义标题栏,其实就是把原来的标题栏隐藏掉,然后再自己写一个TextView这些的控件,把它放上去的而已,一说就很简单的啦
但我们这里有一个知识点的
那就是自定义图片,其实上面的那个手机防盗这些文字外面的那个框,就是用到啦自定义图片的啦
要自定义图片,也很简单,我们要先在drawable的目录下面,新建一个xml文件
下面是我自己建的那个文字的背景text_background.xml
- <font color="#333333"><font face="Arial"><?xml version="1.0" encoding="utf-8"?>
- <shape xmlns:android="http://schemas.android.com/apk/res/android"
- android:shape="rectangle" ><!-- 这里指定了我现在要画的是一个矩形 -->
- <stroke
- android:width="1dip"
- android:color="#ff333333" /><!-- 这个就是一个画笔啦,现在指定了画笔的大小,还有颜色 -->
- <corners android:radius="12dip" /><!-- 现在这里指定我这个矩形是圆角的,12是那个圆角的值 -->
- <solid android:color="@color/background" /><!-- 边框颜色 -->
- <padding
- android:bottom="2dip"
- android:left="8dip"
- android:right="8dip"
- android:top="2dip" /><!-- 这个是内距 -->
- </shape></font></font>
- <font color="#333333"><font face="Arial"><?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="150dip"
- android:layout_height="150dip"
- android:gravity="center_horizontal"
- android:orientation="vertical" >
-
- <ImageView
- android:id="@+id/iv_main_icon"
- android:layout_width="120dip"
- android:layout_height="120dip"
- android:scaleType="fitXY"
- android:src="@drawable/app"
- android:contentDescription="@string/hello_world"/>
-
- <TextView
- android:id="@+id/tv_main_name"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="5dip"
- android:textSize="18sp"
- android:textColor="@android:color/black"
- android:text="@string/main"
- android:background="@drawable/text_background"/><!-- 引用刚刚定义的图片,像一般图片一样使用就行的啦,很方便的 -->
- </LinearLayout>
- </font></font>
- <activity
- android:theme="@android:style/Theme.NoTitleBar"
- android:label="@string/main"
- android:name="com.xiaobin.security.ui.MainActivity" />
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@android:color/white"
- android:orientation="vertical" >
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="40dip"
- android:background="@drawable/title_background"
- android:gravity="center_vertical|center_horizontal"
- android:orientation="vertical" >
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/main"
- android:textColor="@android:color/white"
- android:textSize="22sp" />
- </LinearLayout>
- <GridView
- android:id="@+id/gv_main"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:numColumns="2"
- android:verticalSpacing="8dip" />
- </LinearLayout>