在使用IAR for AVR 5.40 做mega128的开发时,编译出现如下提示原因分析:-H 在AVR编译器中设置过一次,在option文件中也设置过,造成冲突。如下options文件中内容/* Fill unused interrupt vector's with RETI */-H1895-...
分类:
其他好文 时间:
2015-02-09 17:35:54
阅读次数:
287
用于构建复杂的Dialog显示界面
main.xml代码如下:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:o...
分类:
其他好文 时间:
2015-02-08 12:59:35
阅读次数:
195
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)fill_parent设置一个构件的布局为fill_parent将强制性地使构件扩展,以填充布局单元内尽可能多的空间。这跟Windows控件的dockstyle属性大体一致。设置一个顶部布局或...
分类:
移动开发 时间:
2015-02-06 18:08:19
阅读次数:
134
main.xml代码:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"...
分类:
移动开发 时间:
2015-02-06 13:21:22
阅读次数:
211
例子,在ScrollView下加入的组件,无论如何也不能自动扩展到屏幕高度。布局文件。[html] 效果图。.尽管已经设置了android:layout_height="fill_parent",但是,整个LinearLayout和TextView还是不能充满整个屏幕。解决办法。在Scrol...
分类:
移动开发 时间:
2015-02-04 14:21:45
阅读次数:
138
main.xml代码如下:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertica...
分类:
移动开发 时间:
2015-02-03 13:22:19
阅读次数:
269
Given n items with size A[i], an integer m denotes the size of a backpack. How full you can fill this backpack? NoteYou can not divide any item into s...
分类:
其他好文 时间:
2015-02-03 09:27:39
阅读次数:
160
Android下的权重问题困扰了我很久,最近一直在寻找答案,终于找到了解决的方法了,下面 通过两个小例子就可以理解了。
案例一:
<LinearLayout
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:orientation="horizo...
分类:
其他好文 时间:
2015-02-02 18:13:28
阅读次数:
111
Description Today we play a squigglysudoku, The objective is to fill a 9*9 grid with digits so that each column, each row, and each of the nine Con...
分类:
其他好文 时间:
2015-01-31 14:14:17
阅读次数:
147