Android Development for Beginners(2)

Lesson 2 Making an App Interactive

Content

  • 1.Gist
  • 2.Java Escape Characters
  • 3.String in Java
  • 4.Practice Set 2

1.Gist

  • DESCRIPTION:A computer is a machine that follows a list of instructions called a program. An Android device is a computer and an app is a program.
    A snippet is a short, self-contained excerpt from an app, demonstrating how to instruct the device to do something. We can re-use the snippet by pasting it into one of our own apps, possibly with some minimal changes.
    One way to share a snippet is to post it on the GitHub websitehttps://gist.github.com/. A snippet shared there is called a gist. You can then share a link to the gist with your friends.
    Gist

2.Java Escape Characters

Paste_Image.png

3.String in Java

  • Updating String Variable


    Updating String Variable
  • string + int


    string + int

Practice Set 2

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        android:layout_alignParentTop="true"

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:orientation="vertical">

            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="10dp"
                android:fontFamily="sans-serif-medium"
                android:gravity="center_horizontal"
                android:padding="4dp"
                android:text="Team A"
                android:textColor="#616161"
                android:textSize="14sp" />

            <TextView
                android:id="@+id/team_a_score"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:fontFamily="sans-serif-medium"
                android:gravity="center_horizontal"
                android:padding="4dp"
                android:text="0"
                android:textColor="#000000"
                android:textSize="56sp" />

            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginLeft="32dp"
                android:layout_marginRight="32dp"
                android:onClick="addThreeForTeamA"
                android:text="+3 Points" />

            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginLeft="32dp"
                android:layout_marginRight="32dp"
                android:onClick="addTwoForTeamA"
                android:text="+2 Points" />

            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginLeft="32dp"
                android:layout_marginRight="32dp"
                android:onClick="addOneForTeamA"
                android:text="Free Throw" />
        </LinearLayout>

        <View
            android:layout_width="1dp"
            android:layout_height="match_parent"
            android:background="@android:color/darker_gray" />

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:orientation="vertical">>

            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="10dp"
                android:fontFamily="sans-serif-medium"
                android:gravity="center_horizontal"
                android:padding="4dp"
                android:text="Team B"
                android:textColor="#616161"
                android:textSize="14sp" />

            <TextView
                android:id="@+id/team_b_score"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:fontFamily="sans-serif-medium"
                android:gravity="center_horizontal"
                android:padding="4dp"
                android:text="0"
                android:textColor="#000000"
                android:textSize="56sp" />

            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginLeft="32dp"
                android:layout_marginRight="32dp"
                android:onClick="addThreeForTeamB"
                android:text="+3 Points" />

            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginLeft="32dp"
                android:layout_marginRight="32dp"
                android:onClick="addTwoForTeamB"
                android:text="+2 Points" />

            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginLeft="32dp"
                android:layout_marginRight="32dp"
                android:onClick="addOneForTeamB"
                android:text="Free Throw" />
        </LinearLayout>
    </LinearLayout>

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:onClick="reset"
        android:text="reset" />
</RelativeLayout>
Paste_Image.png
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末兽泄,一起剝皮案震驚了整個濱河市泰偿,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌蚊逢,老刑警劉巖丰滑,帶你破解...
    沈念sama閱讀 207,248評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件肾胯,死亡現(xiàn)場離奇詭異闲勺,居然都是意外死亡,警方通過查閱死者的電腦和手機灯变,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,681評論 2 381
  • 文/潘曉璐 我一進店門豺旬,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人柒凉,你說我怎么就攤上這事族阅。” “怎么了膝捞?”我有些...
    開封第一講書人閱讀 153,443評論 0 344
  • 文/不壞的土叔 我叫張陵坦刀,是天一觀的道長。 經(jīng)常有香客問我蔬咬,道長鲤遥,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,475評論 1 279
  • 正文 為了忘掉前任林艘,我火速辦了婚禮盖奈,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘狐援。我一直安慰自己钢坦,他們只是感情好究孕,可當(dāng)我...
    茶點故事閱讀 64,458評論 5 374
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著爹凹,像睡著了一般厨诸。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上禾酱,一...
    開封第一講書人閱讀 49,185評論 1 284
  • 那天微酬,我揣著相機與錄音,去河邊找鬼颤陶。 笑死颗管,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的滓走。 我是一名探鬼主播忙上,決...
    沈念sama閱讀 38,451評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼闲坎!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起茬斧,我...
    開封第一講書人閱讀 37,112評論 0 261
  • 序言:老撾萬榮一對情侶失蹤腰懂,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后项秉,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體绣溜,經(jīng)...
    沈念sama閱讀 43,609評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,083評論 2 325
  • 正文 我和宋清朗相戀三年娄蔼,在試婚紗的時候發(fā)現(xiàn)自己被綠了怖喻。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,163評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡岁诉,死狀恐怖锚沸,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情涕癣,我是刑警寧澤哗蜈,帶...
    沈念sama閱讀 33,803評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站坠韩,受9級特大地震影響距潘,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜只搁,卻給世界環(huán)境...
    茶點故事閱讀 39,357評論 3 307
  • 文/蒙蒙 一音比、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧氢惋,春花似錦洞翩、人聲如沸稽犁。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,357評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽缭付。三九已至,卻和暖如春循未,著一層夾襖步出監(jiān)牢的瞬間陷猫,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,590評論 1 261
  • 我被黑心中介騙來泰國打工的妖, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留绣檬,地道東北人。 一個月前我還...
    沈念sama閱讀 45,636評論 2 355
  • 正文 我出身青樓嫂粟,卻偏偏與公主長得像娇未,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子星虹,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,925評論 2 344

推薦閱讀更多精彩內(nèi)容

  • **2014真題Directions:Read the following text. Choose the be...
    又是夜半驚坐起閱讀 9,399評論 0 23
  • Correctness AdapterViewChildren Summary: AdapterViews can...
    MarcusMa閱讀 8,852評論 0 6
  • 最近在學(xué)習(xí)如何寫作零抬,于是找了幾本關(guān)于寫作的書籍】碛浚《成為作家》是其中一本平夜。這本書是國內(nèi)首次引進的,關(guān)于創(chuàng)意寫作的從書...
    明媚Sopy閱讀 926評論 11 20
  • 我是一個喜歡旅行的人,年少時候的夢想就是和心愛的人一起兼贸,走遍全世界的角角落落《沃保現(xiàn)在,雖然已過而立之年溶诞,離那個兒時的...
    名門小蔥閱讀 195評論 4 4
  • 逃避不一定躲得過 面對不一定最難受 孤單不一定不快樂 得到不一定能長久 失去不一定不再有 轉(zhuǎn)身不一定最軟弱 別急著...
    費雪閱讀 118評論 0 0