<Button android:id="@+id/btn1" android:layout_width="wrap_content" //包裹文字 android:layout_height="wrap_content" android:text="点我" /> ...
分类:
其他好文 时间:
2016-07-29 22:45:47
阅读次数:
202
<TextView android:id="@+id/tv" //id号,指明这个TextView的唯一身份 android:autoLink="phone|web" //电话或者网站的超链接,在字体里由电话号码的话,就会有有链接,有网址也会有超链接 android:layout_width="fi ...
分类:
移动开发 时间:
2016-07-29 18:33:15
阅读次数:
293
1) 在res中创建一个menu的文件夹 2) 在文件夹中创建一个main.xml的类 3) 添加代码 <item android:id=”添加id” android:title=”显示内容”></item> 1) 在活动中重写onCreateOptionsMenu方法 public boolean ...
分类:
其他好文 时间:
2016-07-25 09:23:52
阅读次数:
182
1.效果图 2.创建页面文件(main.xml) 1 <Spinner 2 android:id="@+id/spinner1" 3 android:layout_width="match_parent" 4 android:layout_height="wrap_content" /> 5 6 < ...
分类:
移动开发 时间:
2016-07-19 09:48:08
阅读次数:
193
在学Android,摘自《第一行代码——Android》 布局管理 通过xml文件进行布局管理。 android:id="@+id/button_1" 为当前的元素定义一个唯一标识符,@+id用于定义,@id用于引用;android:text 为其上内容;android:layout_width和a ...
分类:
移动开发 时间:
2016-07-15 13:34:49
阅读次数:
170
1.显示7行,超过7行自动向下补充行数 <EditText android:id="@+id/edt_content" android:layout_width="match_parent" android:layout_height="wrap_content" android:backgroun ...
分类:
其他好文 时间:
2016-07-01 16:00:45
阅读次数:
715
<AutoCompleteTextView android:id="@+id/autoCompleteTextView" android:completionThreshold="1" android:layout_width="match_parent" android:layout_height ...
分类:
移动开发 时间:
2016-06-22 20:25:37
阅读次数:
268
<com.randy.test1.self.MarqueeText android:id="@+id/btn1" android:layout_width="match_parent" android:layout_height="wrap_content" android:ellipsize="m ...
分类:
移动开发 时间:
2016-06-22 20:16:53
阅读次数:
213
<GridView android:id="@+id/movie_list" android:layout_width="906dp" android:layout_height="654dp" android:layout_marginLeft="230dp" android:layout_mar ...
分类:
其他好文 时间:
2016-06-21 15:44:02
阅读次数:
158
(一)带阴影的TextView
涉及到的几个属性:
运行效果如下:
实现代码: <TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:la...
分类:
其他好文 时间:
2016-06-19 06:48:16
阅读次数:
295