先看下XML布局文件
<EditText
android:id="@+id/et"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_toLeftOf="@+id/tv_cou...
分类:
移动开发 时间:
2015-02-28 18:38:34
阅读次数:
152
一个原因是布局文件中,没有给列表显示的位置。
例如:下面的布局
android:id="@+id/list_find"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:cacheColorHint="@and...
分类:
移动开发 时间:
2015-02-26 11:45:36
阅读次数:
136
我也第一次玩,我直接把Fragment改为ListFragment,一运行就报这个错误。 Your content must have a ListView whose id attribute is ‘android.R.id.list‘ 大概也能知道是什么意思,要在对应的xml文件加上ListVie...
分类:
移动开发 时间:
2015-02-22 17:23:01
阅读次数:
160
android:id为控件指定相应的IDandroid:text指定控件当中显示的文字,需要注意的是,这里尽量使用strings.xml文件当中的字符串android:gravity指定View组件的对齐方式,比如说居中,居右等位置 这里指的是控件中的文本位置并不是控件本身android:layou...
分类:
移动开发 时间:
2015-02-13 14:35:49
阅读次数:
159
<GridView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/main_gv_tuijian"
android:numColumns="auto_fit"...
分类:
其他好文 时间:
2015-02-13 13:25:39
阅读次数:
141
private?static?View?getRootView(Activity?context)
{
return?((ViewGroup)context.findViewById(android.R.id.content)).getChildAt(0);
}...
分类:
其他好文 时间:
2015-02-13 08:07:43
阅读次数:
854
android:id="@+id/idNumber"
style="@style/NewServiceEditTextline"
android:layout_width="match_parent"
android:layout_height="wrap_content"
...
分类:
其他好文 时间:
2015-02-12 14:02:23
阅读次数:
112
1.结构目录
2.实现步骤
1.主布局activity_main.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/main"...
main.xml代码如下:
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/myscroll...
分类:
其他好文 时间:
2015-02-07 11:49:55
阅读次数:
143
1,xml布局<TabHostxmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:id="@android:id/tabhost"android:layout_height="match_parent"><LinearLayoutandroid:la..
分类:
其他好文 时间:
2015-02-06 07:08:36
阅读次数:
158