要用到tab组件,布局layout中必须有TabHost文件,它有一个id,比如android:id="@+id/tabhost" 或者android:id="@android:id/tabhost"在TabHost中一般必须有TabWidget,这个主要是用来处理tab的位置、属性等。一般还有Fr...
分类:
其他好文 时间:
2015-04-30 15:55:25
阅读次数:
118
avtivity_cehua.xml
<android.support.v4.widget.DrawerLayoutxmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer"
android:layout_width="match_parent"
android:layout_height="matc..
分类:
移动开发 时间:
2015-04-24 19:25:03
阅读次数:
159
给TextView添加Onclick事件还需要配置android:clickable="true",否则点击无效。 <TextView ??????????? android:id="@+id/user_register_button" ??????????? android:layout_width="wrap...
分类:
其他好文 时间:
2015-04-24 17:00:31
阅读次数:
106
1. getWindow().getDecorView().findViewById(android.R.id.content) 2. private?static?View?getRootView(Activity?context)?? ????{?? ????????return?((ViewGroup)context.findViewById(...
分类:
其他好文 时间:
2015-04-23 18:03:06
阅读次数:
306
在录音机中添加一个录音列表项,点击后用户可以看到已经存在的录音文件。
效果图如下:
修改代码参照如下:
最初的录音机是没有录音列表选项的,所以我们要加上去。
SoundRecorder\res\menu\main_menu.xml添加录音菜单选项
android:id="@+id/menu_item_filetype"...
分类:
移动开发 时间:
2015-04-23 17:37:50
阅读次数:
358
以一个简单的图片浏览器实例说明新建工程后:在activit_main.xml中添加代码:<?xmlversion="1.0"encoding="utf-8"?>
<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/main"
android:layout_width="match_parent"
android:..
分类:
移动开发 时间:
2015-04-23 00:21:08
阅读次数:
158
android中include标签是为了便于控件的覆用的一个很好解决方案。
但是也有一些需要注意的地方,下面是本人在项目中碰到过的一个问题,做此记录,便于以后查看。
include标签用法。
1.新建一个xml文件,命名 head.xml
head.xml文件内容如下:
android:id="@+id/index_linear_foo...
分类:
移动开发 时间:
2015-04-22 22:17:03
阅读次数:
155
需求:实现日历功能中的天数,在一个图标中显示当前日期的天数先上效果图:关键xml布局文件:<FrameLayout
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_margin="4dp">
<ImageView
android:id="@+id/itemImage"
android..
分类:
移动开发 时间:
2015-04-22 16:16:03
阅读次数:
219
RatingBar是我们在做项目时常用到的一个控件View,用来表示评价的指数。是五角星样式的,但自带的样式有时候在我们项目中显示不协调,我们就要自定义RatingBar的显示样式。
先还是在布局页面中写上控件:
android:id="@+id/my_need_evaluate_linearlayout_top"
android:layout_w...
分类:
其他好文 时间:
2015-04-22 15:16:10
阅读次数:
190
android:id="@+id/slidingdrawer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:content="@+id/content"
android:handle="@+id/handle"
android:or...
分类:
移动开发 时间:
2015-04-22 11:38:22
阅读次数:
146