实例教程一:电话拨号器
实例教程一:电话拨号器<div class="postbody"><div id="cnblogs_post_body">仿愤怒的小鸟小游戏
http://www.eoeandroid.com/thread-205532-1-1.html
Android 闯关游戏源码
http://www.eoeandroid.com/thread-205540-1-1.html
Android钻石迷情游戏源码
http://www.eoeandroid.com/thread-205318-1-1.html
布局页面:
<div class="cnblogs_code"><?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/mobile" /> <EditText android:id="@+id/edtPhoneNumber" android:layout_width="fill_parent" android:layout_height="wrap_content" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/call" android:id="@+id/btnCall" /></LinearLayout>
页:
[1]