12

だから私はAndroid開発に不慣れです...ボタンのように機能する画像を作成するにはどうすればよいですか?その画像を押すと、画像は特定のアクティビティを開始します。だから私はこれを画像として表示したい:

 <Button
    android:id="@+id/button1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:layout_marginTop="33dp"
    android:text="Button" />
4

3 に答える 3

24

ImageButtonを次のように作成します。

main.xmlの場合:

<ImageButton android:id="@+id/ib"
    android:src="@drawable/bookmark" <-- SET BUTTON IMAGE HERE -->
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
/>

コード部分:

ImageButton ib=(ImageButton)findViewById(R.id.ib);
ib.setOnClickListener(ibLis);
    }
    private OnClickListener ibLis=new OnClickListener(){

        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub
            //START YOUR ACTIVITY HERE AS
             Intent intent = new Intent(YOUR_CURRENT_ACTIVITY.this,NextActivity.class);
             startActivity(intent, 0);
        }
    };

編集:

ボタンビューを使用してボタンのような画像を作成する場合は、2番目のオプションを選択し、次のようにカスタムボタンを作成します。

まず、pressed、focused、defaultなどのすべての画像をres / drawableフォルダーに配置し、次にnewbtn.xmlをdrawable/newbtn.xmlに次のように追加します。

<?xml version="1.0" encoding="utf-8"?>  
<selector xmlns:android="http://schemas.android.com/apk/res/android">  
    <item android:state_pressed="true"  
          android:drawable="@drawable/button_pressed" /> <!-- pressed -->  
    <item android:state_focused="true"  
          android:drawable="@drawable/button_focused" /> <!-- focused -->  
    <item android:drawable="@drawable/button_normal" /> <!-- default -->  
</selector>

最後に、ボタンXMLで次のように設定android:backgroundします。

<Button    
    android:id ="@+id/btn"  
    android:layout_width="wrap_content"   
    android:layout_height="wrap_content"   
    android:text="Hello"  
    android:textColor="#ffffffff"  
    android:background="@drawable/newbtn"   <-- get button background to selector -->
    /> 

画像を使用したカスタムボタンの作成については、このチュートリアルを参照してください

Androidでカスタムの派手なボタンを作成する

于 2012-06-24T10:40:04.940 に答える
1

ImageView要素を使用して、クリックリスナーをそれにアタッチします。

XML:

<ImageView
    android:id="@+id/myImageView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/myPic" 
    />

コード:

ImageView imageView = (ImageView) findViewById(R.id.myImageView);
imageView.setOnClickListener(new OnClickListener() {
    @Override
    public void onClick(View v) {
        Intent intent = new Intent(ThisActivity.this, MyOtherActivity.class);
        startActivity(intent);
    }
});

(同じ方法で)ImageButtonを使用することもできます。それはほとんど違いがありません。詳細については、こちらをご覧ください。クリック可能なImageViewとImageButtonの違い

于 2012-06-24T10:37:22.940 に答える
0

「setOnClickListener()」を使用するのは非常に複雑です。代わりに、XMLで「onClick」プロパティを使用してください。

<ImageButton
    android:id="@+id/button19"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@android:color/transparent"
    android:onClick="yourCallback"
    android:src="@drawable/your_image"
/>

public void yourCallback(View view) 
{
    ...
}
于 2018-07-04T06:15:33.703 に答える