国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Android > 正文

Android中的Button自定義點擊效果實例代碼

2020-04-11 12:18:30
字體:
來源:轉載
供稿:網友

方法一
1.放在drawable下的selector.xml文件

復制代碼 代碼如下:

<android="http://schemas.android.com/apk/res/Android">

   android:drawable="@drawable/temp2" />

2.布局文件main.xml

復制代碼 代碼如下:

<http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    <android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/hello"
    />
 <android:drawableTop="@drawable/shouru"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:text="@string/button"
 android:background="@drawable/selector"/>

 方法二
1.布局文件main.xml
[code]
<http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/hello"
    />
 <android:id="@+id/button"
 android:drawableTop="@drawable/shouru"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:text="@string/button"
 android:background="@drawable/temp4"/>


2.主要的java代碼,實現點擊效果:
復制代碼 代碼如下:

   Button button = (Button) this.findViewById(R.id.button);
   button.setOnTouchListener(new Button.OnTouchListener(){
   @Override
   public boolean onTouch(View v, MotionEvent event) {
    if(event.getAction() == MotionEvent.ACTION_DOWN){  
                    v.setBackgroundResource(R.drawable.temp1);  
                    Log.i("TestAndroid Button", "MotionEvent.ACTION_DOWN");
                }  
                else if(event.getAction() == MotionEvent.ACTION_UP){  
                    v.setBackgroundResource(R.drawable.temp2);
                    Log.i("TestAndroid Button", "MotionEvent.ACTION_UP");
                }
    return false;
   }
  });

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 塔河县| 荆门市| 迁安市| 江都市| 喀喇沁旗| 小金县| 遵义市| 讷河市| 库车县| 石泉县| 凤凰县| 梨树县| 舟曲县| 星子县| 建阳市| 临澧县| 从江县| 东阿县| 沾化县| 扎赉特旗| 夏河县| 昌邑市| 绿春县| 思茅市| 九寨沟县| 灌云县| 鲁甸县| 福安市| 许昌市| 北辰区| 敖汉旗| 永新县| 屯留县| 德格县| 桓仁| 梅州市| 大悟县| 林口县| 饶平县| 缙云县| 凤冈县|