タグ付けされた質問 「imagebutton」

18
透明なImageButtonの作成方法:Android
<ImageButton android:id="@+id/previous" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/media_skip_backward" android:background="@drawable/transparent"></ImageButton> これは、これらのボタンをSurfaceViewに配置するために透明なImageButtonを取得しようとしたものです。しかし、Eclipseでは、透明な行をxmlに含めるとすぐにプロジェクトでエラーが発生します。 助けてください。

16
jQuery UI Dialog-閉じるアイコンがありません
カスタムjQuery 1.10.3テーマを使用しています。テーマローラーからすべてのストレートをダウンロードしましたが、意図的に何も変更していません。 ダイアログボックスを作成すると、閉じるアイコンがあるはずの空の灰色の四角形が表示されます。 私は自分のページで生成されたコードを比較しました: <div class="ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix"> <spanid="ui-id-2" class="ui-dialog-title">Title</span> <button class="ui-dialog-titlebar-close"></button> </div> ダイアログデモページで生成されたコードに: <div class="ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix"> <span id="ui-id-1" class="ui-dialog-title">Basic dialog</span> <button class="ui-button ui-widget ui-state-default ui-corner-all ui-button-icon-only ui-dialog-titlebar-close" role="button" aria-disabled="false" title="close"> <span class="ui-button-icon-primary ui-icon ui-icon-closethick"></span> <span class="ui-button-text">close</span> </button> </div> 編集:コードのさまざまな部分は私ではなくjQueryUIによって生成されるので、通常の機能を実現するための悪い/不必要な選択のように見えるjqueryui jsファイルを編集せずにspanタグを追加することはできません。 コードのその部分を生成するために使用されるJavaScriptは次のとおりです。 this.element.dialog({ appendTo: "#summary_container", title: this.title(), …

3
クリック可能なImageViewとImageButtonの違い
間の有意な差がある場合、私は思ったんだけどImageViewクリック可能に設定していますと比べて、ImageButton? どちらか一方を使用する理由はありますか?唯一の可能なオプションとしてImageButton残すのドローアブルに制限はありImageViewますか? 私はクリッカブルを選ぶ場合、私はおそらく、ボタンのいずれかの機能を失うことになるImageViewオーバーImageButton?

8
AndroidのImageButtonに画像を合わせる
私のアクティビティには6つのImageButtonがあり、コードを使用して画像を設定します(xmlは使用しません)。 ボタン領域の75%をカバーしてほしい。しかし、一部の画像がカバーする領域が少ないため、画像が大きすぎてimageButtonに収まりません。プログラムでサイズを変更して表示するにはどうすればよいですか?以下はスクリーンショットです 以下はxmlファイルです <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:layout_marginBottom="5sp" android:layout_marginLeft="2sp" android:layout_marginRight="5sp" android:layout_marginTop="0sp" > <LinearLayout android:layout_height="0dp" android:layout_width="match_parent" android:layout_weight="1" android:orientation="horizontal"> <ImageButton android:layout_height="match_parent" android:layout_width="0dp" android:layout_weight="1" android:id="@+id/button_topleft" android:layout_marginBottom="5sp" android:layout_marginLeft="2sp" android:layout_marginRight="5sp" android:layout_marginTop="0sp" /> <ImageButton android:layout_height="match_parent" android:layout_width="0dp" android:layout_weight="1" android:id="@+id/button_topright" android:layout_marginBottom="5sp" android:layout_marginLeft="2sp" android:layout_marginRight="5sp" android:layout_marginTop="0sp" /> </LinearLayout> <LinearLayout android:layout_height="0dp" android:layout_width="match_parent" android:layout_weight="1" android:orientation="horizontal"> <ImageButton android:layout_height="match_parent" android:layout_width="0dp" …

10
ImageButtonにテキストを表示する方法は?
私が持っているImageButtonと私はそれにテキストや画像を表示したいです。しかし、エミュレータを試してみると: <ImageButton android:text="OK" android:id="@+id/buttonok" android:src="@drawable/buttonok" android:layout_width="match_parent" android:layout_height="wrap_content" /> 画像は表示されますが、テキストは表示されません。どうすればテキストを表示できますか?私を助けてください!

4
マテリアルデザインのタッチリップルをImageButtonに適用しますか?
リップル効果が組み込まれているロリポップの通常のボタンとは異なり、静止画像であるため、クリックしたときにタッチアニメーションで応答しない画像ボタンがあります。画像にマテリアルデザインのリップルタッチ効果を追加したいのですが、実装する方法が見つからないようです。画像の上にカラーフィルターを設定できますが、それは波及効果ではありません。私がやろうとしていることの例は、Google Playミュージックでアルバムのカバー画像を押したままにし、影の波紋が画像全体を移動する場合です。

6
状態が選択されたAndroidImageButton?
背景にセレクターを備えたImageButtonを使用していた場合、外観を変更するために変更できる状態はありますか?今のところ、押すと画像が変わるようになっていますが、「ハイライト」や「選択」など、見た目を自由に切り替えられる状態がないようです。 これが私のXMLです。押すと外観が変わるだけです。 <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_focused="true" android:state_pressed="false" android:drawable="@drawable/map_toolbar_details_selected" /> <item android:state_focused="true" android:state_pressed="true" android:drawable="@drawable/map_toolbar_details_selected" /> <item android:state_focused="false" android:state_pressed="true" android:drawable="@drawable/map_toolbar_details_selected" /> <item android:drawable="@drawable/map_toolbar_details" />


弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.