亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

從零開始學android小示例程序

 更新時間:2014年02月08日 14:54:14   作者:  
這篇文章主要介紹了一個學習android開發(fā)的小示例程序,需要的朋友可以參考下



布局文件

復制代碼 代碼如下:

<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"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <TextView
        android:id="@+id/showWord"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/GreenBtn"
        android:layout_alignParentTop="true"
        android:layout_alignRight="@+id/BlueBtn"
        android:layout_marginTop="17dp"
        android:text="@string/ShowWordText"
        android:textStyle="bold" />

    <Button
        android:id="@+id/GreenBtn"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/showWord"
        android:layout_marginLeft="22dp"
        android:layout_marginTop="28dp"
        android:gravity="left|center_vertical|center_horizontal"
        android:text="@string/GreenBtnText" />

    <Button
        android:id="@+id/BlueBtn"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBaseline="@+id/YellowBtn"
        android:layout_alignBottom="@+id/YellowBtn"
        android:layout_toRightOf="@+id/YellowBtn"
        android:gravity="left|center_vertical|center_horizontal"
        android:text="@string/BlueBtnText" />

    <Button
        android:id="@+id/YellowBtn"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBaseline="@+id/GreenBtn"
        android:layout_alignBottom="@+id/GreenBtn"
        android:layout_toRightOf="@+id/GreenBtn"
        android:gravity="left|center_vertical|center_horizontal"
        android:text="@string/YellowBtnText" />

</RelativeLayout>

復制代碼 代碼如下:

package com.example.demo1;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;
import android.app.Activity;
import android.graphics.Color;

 
public class MainActivity extends Activity implements OnClickListener{

    TextView tv_show=null;
    Button greenBtn=null;
    Button blueBtn=null;
    Button yellowBtn=null;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        tv_show=(TextView)findViewById(R.id.showWord);
        greenBtn=(Button)findViewById(R.id.GreenBtn);
        blueBtn=(Button)findViewById(R.id.BlueBtn);
        yellowBtn=(Button)findViewById(R.id.YellowBtn);

        greenBtn.setOnClickListener(this);
        blueBtn.setOnClickListener(this);
        yellowBtn.setOnClickListener(this);
    }
    @Override
    public void onClick(View v) {
    switch (v.getId()) {
    case R.id.GreenBtn:
        tv_show.setTextColor(Color.GREEN);       
        break;
    case R.id.BlueBtn:
        tv_show.setTextColor(Color.BLUE);       
        break;
    case R.id.YellowBtn:
        tv_show.setTextColor(Color.YELLOW);       
        break;
    default:
        break;
    }

    }
}

相關文章

  • Android自定義ViewGroup實現(xiàn)彈性滑動效果

    Android自定義ViewGroup實現(xiàn)彈性滑動效果

    這篇文章主要為大家詳細介紹了Android自定義ViewGroup實現(xiàn)彈性滑動效果,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2017-12-12
  • 小談Kotlin的空處理的使用

    小談Kotlin的空處理的使用

    這篇文章主要介紹了小談Kotlin的空處理的使用,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2019-01-01
  • phonegap教程使用jspdf庫在應用中生成pdf文件(pdf生成方法)

    phonegap教程使用jspdf庫在應用中生成pdf文件(pdf生成方法)

    在PhoneGap應用中生成pdf文件,實現(xiàn)起來很簡單,使用JSPDF這個標準的JavaScript類庫來實現(xiàn)這個功能
    2014-01-01
  • Android顯示系統(tǒng)SurfaceFlinger詳解

    Android顯示系統(tǒng)SurfaceFlinger詳解

    本文詳細講解了Android顯示系統(tǒng)SurfaceFlinger,文中通過示例代碼介紹的非常詳細。對大家的學習或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2021-12-12
  • Flutter實現(xiàn)底部導航

    Flutter實現(xiàn)底部導航

    這篇文章主要為大家詳細介紹了Flutter實現(xiàn)底部導航的實現(xiàn)方法,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2019-02-02
  • Android9.0 靜默安裝源碼的實現(xiàn)

    Android9.0 靜默安裝源碼的實現(xiàn)

    這篇文章主要介紹了Android9.0 靜默安裝源碼的實現(xiàn),文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧
    2020-01-01
  • Flutter學習之構建、布局及繪制三部曲

    Flutter學習之構建、布局及繪制三部曲

    這篇文章主要給大家介紹了關于Flutter學習之構建、布局及繪制三部曲的相關資料,文中通過示例代碼介紹的非常詳細,對大家學習或者使用Flutter具有一定的參考學習價值,需要的朋友們下面來一起學習學習吧
    2019-04-04
  • Android微信圖片瀏覽框架設計

    Android微信圖片瀏覽框架設計

    這篇文章主要為大家詳細介紹了Android微信圖片瀏覽框架設計,感興趣的小伙伴們可以參考一下
    2016-08-08
  • Android使用手勢實現(xiàn)翻頁效果

    Android使用手勢實現(xiàn)翻頁效果

    這篇文章主要介紹了Android使用手勢實現(xiàn)翻頁效果,本程序使用了一個ViewFlipper組件,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2017-09-09
  • 多面分析HarmonyOS與Android的特點

    多面分析HarmonyOS與Android的特點

    請教身邊的大佬們,公司的CTO、中臺部門的總監(jiān)、老東家數(shù)十年行業(yè)經(jīng)驗的老架構、以及在中科院讀研究生的大學老室友、技術圈的網(wǎng)友等等,他們都給出了自己獨特的看法,讓我從多方面更好的去了解到了大家對鴻蒙的認識
    2021-08-08

最新評論