亚洲欧美精品沙发,日韩在线精品视频,亚洲Av每日更新在线观看,亚洲国产另类一区在线5

<pre id="hdphd"></pre>

  • <div id="hdphd"><small id="hdphd"></small></div>
      學(xué)習(xí)啦>學(xué)習(xí)電腦>電腦技巧>

      android5.0程序開(kāi)發(fā)的圖片按鈕ImageButton使用教程

      時(shí)間: 本達(dá)868 分享

        在android5.0程序開(kāi)發(fā)中,你知道圖片按鈕控件ImageButton怎么使用嗎?下面是學(xué)習(xí)啦小編給大家整理的一些有關(guān)android5.0程序開(kāi)發(fā)的圖片按鈕ImageButton使用教程,希望對(duì)大家有幫助!

        android5.0程序開(kāi)發(fā)的圖片按鈕ImageButton使用教程

        啟動(dòng)eclipse程序,新建一android5.0工程文件ImageButtonDemo。

        將圖片素材導(dǎo)入到drawable目錄中,可以復(fù)制圖片文件,在drawable目錄中進(jìn)行粘貼。注意圖片文件名不能以數(shù)字開(kāi)頭,否則出錯(cuò)。

        在activity_main.xml文件中加入一個(gè)TextView文本控件和兩個(gè)ImageButton圖片按鈕控件。

        <?xml version="1.0" encoding="utf-8"?>

        <LinearLayout xmlns:android="hp://schemas.android.apk/res/android"

        android:orientation="vertical"

        android:layout_width="fill_parent"

        android:layout_height="fill_parent"

        >

        <TextView

        android:id="@+id/TextView01"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content">

        </TextView>

        <ImageButton

        android:id="@+id/ImageButton01"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:background="@drawable/a">

        </ImageButton>

        <ImageButton

        android:id="@+id/ImageButton02"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:background="@drawable/c">

        </ImageButton>

        </LinearLayout>

        再雙擊打開(kāi)MainActivity.java文件,導(dǎo)入TextView控件類、ImageButton控件類聲明。

        import android.widget.TextView;

        import android.widget.ImageButton;

        在程序中加入文本控件和兩個(gè)ImageButton控件的引用代碼。

        final TextView textview1=(TextView)findViewById(R.id.TextView01);

        final ImageButton imagebutton1=(ImageButton)findViewById(R.id.ImageButton01);

        final ImageButton imagebutton2=(ImageButton)findViewById(R.id.ImageButton02);

        分別添加imagebutton1和imagebutton2的執(zhí)行代碼。點(diǎn)擊圖片按鈕會(huì)改變按鈕。

        imagebutton1.setOnClickListener(new OnClickListener(){

        @Override

        public void onClick(View v) {

        textview1.setText("點(diǎn)擊了第一個(gè)圖片按鈕");

        imagebutton1.setImageDrawable(getResources().getDrawable(R.drawable.b));

        imagebutton2.setImageDrawable(getResources().getDrawable(R.drawable.c));

        }

        });

        imagebutton2.setOnClickListener(new OnClickListener(){

        @Override

        public void onClick(View v) {

        textview1.setText("點(diǎn)擊了第二個(gè)圖片按鈕");

        imagebutton2.setImageDrawable(getResources().getDrawable(R.drawable.d));

        imagebutton1.setImageDrawable(getResources().getDrawable(R.drawable.a));

        }

        });

        運(yùn)行程序,分別點(diǎn)擊ImageButton1和ImageButton2,可見(jiàn)如下效果:

        END

      看了“android5.0程序開(kāi)發(fā)的圖片按鈕ImageButton使用教程”的人還看了

      1.android基礎(chǔ)教程視頻:Button圖文混排的按鈕

      2.android中透明按鈕的設(shè)置教程

      3.android基礎(chǔ)教程視頻:ToggleButton按鈕的使用

      4.android基礎(chǔ)教程視頻:ImageView實(shí)現(xiàn)適屏和裁剪圖片

      2076832