android:gravity:设置textview中的字体居中显示
android:id="@+id/tv_audit_title"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:backgr...
分类:
移动开发 时间:
2014-10-17 15:35:09
阅读次数:
243
加一个红色的边框:
textView的XML:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orienta...
分类:
移动开发 时间:
2014-10-17 13:54:32
阅读次数:
275
效果:
1.自定义titleBar的布局。
android:layout_width="match_parent"
android:layout_height="match_parent" >
android:id="@+id/tv_SongsCount"
android:layout_widt...
分类:
其他好文 时间:
2014-10-17 13:52:21
阅读次数:
203
效果:
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:shrinkColumns="0" >
android:text="审核类型:"
...
分类:
其他好文 时间:
2014-10-17 12:01:16
阅读次数:
117
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_alignParentBottom="true"
android:layout_width="fill_parent"
android:...
分类:
移动开发 时间:
2014-10-16 23:27:53
阅读次数:
201
android:layout_width="200dp"
android:layout_height="50dp"
android:hint="请输入账号"
android:singleLine="true"
android:drawableLeft="@drawable/ic_launcher" /...
分类:
其他好文 时间:
2014-10-16 13:10:40
阅读次数:
139
效果:
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFFFFF"
android:orientation="vertical" >
android:lay...
分类:
移动开发 时间:
2014-10-16 12:58:12
阅读次数:
175
Fragment在实际项目开发中使用的越来越多,现在简单介绍一下
布局文件:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_par...
分类:
移动开发 时间:
2014-10-15 22:54:41
阅读次数:
265
对于要重用资源,节约代码量,fragment起到很好的制约作用
一 先来看看fragment的调用方式。
1.写在布局中
比如我有一个fragme叫 DateFragment.class
第一种方法
android:id = "@+id/datefragment"
android:layout_weight="1"
android:layout_width="0dp"
a...
分类:
其他好文 时间:
2014-10-15 04:17:19
阅读次数:
195
表格布局最主要的三个属性:
XML代码实例:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orie...
分类:
移动开发 时间:
2014-10-14 18:38:49
阅读次数:
209