|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
iPhoneSDK安装,然后最基本的是你要熟悉C语言,再来你得学习开发iPhone所使用的Objective-C语言,接著是Cocoa。如果你是Mac平台开发的入门用户第一章
1、Activity:Android中卖力与屏幕、用户等举行交互。能够经由过程承继Activity,并在其子类中完成程序的逻辑功效。格局比方QuizActivity。
2、layout文件寄存在res/layout下,格局比方activity_quiz.xml。
3、layout一样平常由结构(Layout)、组件(Widgets)等构成。
- 罕见结构:RelativeLayout、LinearLayout(竖分列的vertical、横分列的horizontal)。
- 罕见组件:TextView、Button。
4、一个基础的layout文件:
#四号程序员http://www.coder4.com01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical">
<TextView
android:id="@+id/question_text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="24dp"/>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:id="@+id/true_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/true_button"/>
<Button
android:id="@+id/false_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
<p>android:text= |
|