码迷,mamicode.com
首页 >  
搜索关键字:android_id    ( 471个结果
Android学习笔记-SQLite的使用
界面文件activity_main.xml<Button android:id="@+id/createButton" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_below="@id/hello_world" android:text="createdatabase"/> <Button android:id="@+id/updateButton" a..
分类:移动开发   时间:2014-11-19 18:54:14    阅读次数:303
兔子--AlertDialog
效果: 实现步骤: 1.定义AlertDialog的布局     android:layout_width="100dp"     android:layout_height="100dp"     android:background="@android:color/holo_green_dark" >              android:id="@+i...
分类:其他好文   时间:2014-11-19 14:15:36    阅读次数:194
Android学习笔记-常用控件
单选按钮Radio<RadioGroup android:id="@+id/genderGroup" android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical"> <RadioButton android:id="@+id/femaleButton" android:layout_width="wrap_content" android:..
分类:移动开发   时间:2014-11-19 02:17:11    阅读次数:279
Android学习笔记-Handler的使用
点击Start按钮,每隔3秒在Logcat里打印一句话<Button android:id="@+id/startButton" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="Start"/> <Button android:id="@+id/endButton" android:layout_width="fill_parent" a..
分类:移动开发   时间:2014-11-19 02:07:42    阅读次数:216
Android学习笔记-Activity的布局
线性布局<?xmlversion="1.0"encoding="utf-8"?> <LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical"> <!-- android:id为控件..
分类:移动开发   时间:2014-11-17 19:43:38    阅读次数:283
android中的tabdemo
首先先样式,注意必须用android:id/tabs 不能使用id+ 其次写代码public class TabActivity extends android.app.TabActivity { private TabHost _tabHost;...
分类:移动开发   时间:2014-11-14 17:33:58    阅读次数:165
SeekBar自定义样式
网上的SeekBar自定义样式的资料很多,大多是抄来抄去。我最近用到这个,也从网上抄了一个,但是遇到不少问题,其中一个就是SeekBar的背景条不显示,最后才找到解决方法。 1. 使用自定义SeekBar <SeekBar android:id="@+id/ctrl_seekBar" android:layout_width="wrap_cont...
分类:其他好文   时间:2014-11-13 22:37:46    阅读次数:434
android 自学笔记2-布局
1.LinearLayout<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal"> <!--<Button--> <!--android:id="@+id/button1"-..
分类:移动开发   时间:2014-11-11 23:01:11    阅读次数:263
android 自学笔记
今日学习了Android常用的控件TextView<TextView android:id="@+id/text_view" android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center" android:textSize="24sp" android:textColor="#00ff00" android:text="ThisisTextView"/&..
分类:移动开发   时间:2014-11-11 02:04:41    阅读次数:252
关于Activity中back的用法
从一个页面返回到另一个页面,两种方法: 第一种也是我最常用的一种:                 android:id="@+id/linearLayout"                 android:layout_width="fill_parent"                 android:layout_height="45dp"                 ...
分类:其他好文   时间:2014-11-10 23:26:53    阅读次数:283
471条   上一页 1 ... 38 39 40 41 42 ... 48 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!