近期规划做一个寝室共同的登陆界面,然后把自己寝室的一些回忆放进去。
要求:1.登陆首页根据自己的名字登陆进去
2.登陆进去可以实现如下功能:
一:你可以访问你寝室人的QQ空间
二:后台会播放一些自己先设定的音乐,强制启动,但是用户可以自己关闭。歌曲首先会设定几个歌曲,但是用户如果想听什么歌曲,可以从网上试听。
三:会将每个成员电话号码列出,并且设置了拨打电弧的快捷键。
四:也提供发送信息功能。
五:离开该软件时,显示一个精美画面,并获取日历 天气信息。
首页界面制作以及心得如下:
1.画面:
2.代码:
3.心得:
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical"
- android:background="@drawable/mschoolgate">
- <TextView
- android:height="15mm"
- android:text="@string/text1"
- android:textColor="#FF0000"
- android:layout_height="wrap_content"
- android:layout_width="fill_parent"
- android:layout_margin="0px"
- android:textSize="40dp"
- android:textStyle="bold|italic"
- android:id="@+id/textview1"
- android:gravity="center"></TextView>
- <TableLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content">
- <TableRow
- android:gravity="center"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content" >
- <TextView
- android:text="用户名:"
- android:textSize="30dp"
- android:textColor="#a52a2a"
- />
- <EditText
- android:textColor="#FF0000"
- android:maxHeight="1dp"
- android:id="@+id/input1"
- android:maxWidth="5dp"
- android:width="120px"
- />
- <Button
- android:text="进入"
- android:id="@+id/button_in"
- />
- </TableRow>
- </TableLayout>
- </LinearLayout>
为了获得一个好的显示效果可以用图片为背景:android:src="@drawable/图片生成的id号码"
设置字体的格式:斜粗体:
- android:textStyle="bold|italic"
设置字体大小:
- android:textSize="40dp"
设置字体颜色和背景颜色:
- android:textColor="#FF0000"
- android:background="@drawable/mschoolgate"
然后就是这个输入部分:要用tablelayout.