OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:imagebutton
(Results
1 - 25
of
558
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/frameworks/base/tests/FrameworkPerf/res/layout/
image_button_layout.xml
19
<
ImageButton
android:layout_width="wrap_content" android:layout_height="wrap_content"
21
<
ImageButton
android:layout_width="wrap_content" android:layout_height="wrap_content"
23
<
ImageButton
android:layout_width="wrap_content" android:layout_height="wrap_content"
25
<
ImageButton
android:layout_width="wrap_content" android:layout_height="wrap_content"
27
<
ImageButton
android:layout_width="wrap_content" android:layout_height="wrap_content"
29
<
ImageButton
android:layout_width="wrap_content" android:layout_height="wrap_content"
31
<
ImageButton
android:layout_width="wrap_content" android:layout_height="wrap_content"
33
<
ImageButton
android:layout_width="wrap_content" android:layout_height="wrap_content"
35
<
ImageButton
android:layout_width="wrap_content" android:layout_height="wrap_content"
37
<
ImageButton
android:layout_width="wrap_content" android:layout_height="wrap_content
[
all
...]
/device/google/accessory/demokit/app/res/layout/
buttoncontainer.xml
13
<
ImageButton
android:background="@null" android:id="@+id/Button1"
14
style="@style/DemoKitButtonDisplay" android:src="@drawable/indicator_button1_off_noglow"></
ImageButton
>
15
<
ImageButton
android:background="@null" android:id="@+id/Button2"
16
style="@style/DemoKitButtonDisplay" android:src="@drawable/indicator_button2_off_noglow"></
ImageButton
>
17
<
ImageButton
android:background="@null" android:id="@+id/Button3"
18
style="@style/DemoKitButtonDisplay" android:src="@drawable/indicator_button3_off_noglow"></
ImageButton
>
19
<
ImageButton
android:background="@null" android:id="@+id/Button4"
20
style="@style/DemoKitButtonDisplay" android:src="@drawable/indicator_button_capacitive_off_noglow"></
ImageButton
>
/cts/tests/tests/widget/src/android/widget/cts/
ImageButtonTest.java
27
import android.widget.
ImageButton
;
35
new
ImageButton
(getContext());
37
new
ImageButton
(getContext(), attrs);
39
new
ImageButton
(getContext(), attrs, 0);
42
new
ImageButton
(null);
48
new
ImageButton
(null, null);
54
new
ImageButton
(null, null, -1);
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/controller/
ActionSlider.java
23
import android.widget.
ImageButton
;
30
ImageButton
mLeftButton;
31
ImageButton
mRightButton;
39
mLeftButton = (
ImageButton
) mTopView.findViewById(R.id.leftActionButton);
48
mRightButton = (
ImageButton
) mTopView.findViewById(R.id.rightActionButton);
StyleChooser.java
10
import android.widget.
ImageButton
;
27
private Vector<
ImageButton
> mIconButton = new Vector<
ImageButton
>();
47
final
ImageButton
button = new
ImageButton
(context);
/frameworks/base/core/java/android/widget/
ImageButton.java
26
* or clicked by the user. By default, an
ImageButton
looks like a regular
30
* {@code <
ImageButton
>} XML element or by the
50
* reference it as a drawable for the source of your
ImageButton
(in the
70
public class
ImageButton
extends ImageView {
71
public
ImageButton
(Context context) {
75
public
ImageButton
(Context context, AttributeSet attrs) {
79
public
ImageButton
(Context context, AttributeSet attrs, int defStyleAttr) {
83
public
ImageButton
(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
95
return
ImageButton
.class.getName();
/cts/tests/tests/widget/res/layout/
imagebutton_test.xml
17
<
ImageButton
xmlns:android="http://schemas.android.com/apk/res/android"
18
android:id="@+id/
imagebutton
"
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
sample2-expected-changeView2.xml
6
<
ImageButton
android:layout_width="wrap_content" android:id="@+id/ImageButton1" android:layout_below="@+id/button2" android:layout_height="wrap_content" android:text="Button" android:layout_toRightOf="@+id/button2"></
ImageButton
>
9
<
ImageButton
android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Button" android:id="@+id/ImageButton2" android:layout_alignParentRight="true"></
ImageButton
>
/development/samples/ApiDemos/res/layout/
image_button_1.xml
22
<
ImageButton
27
<
ImageButton
32
<
ImageButton
/development/samples/ApiDemos/src/com/example/android/apis/accessibility/
ClockBackActivity.java
24
import android.widget.
ImageButton
;
47
ImageButton
button = (
ImageButton
) findViewById(R.id.button);
TaskListActivity.java
26
import android.widget.
ImageButton
;
51
ImageButton
button = (
ImageButton
) findViewById(R.id.button);
/frameworks/base/core/tests/coretests/res/layout/
grid_in_vertical.xml
27
<
ImageButton
32
<
ImageButton
37
<
ImageButton
list_in_vertical.xml
30
<
ImageButton
35
<
ImageButton
40
<
ImageButton
/packages/apps/UnifiedEmail/src/com/android/mail/compose/
ComposeAttachmentTile.java
7
import android.widget.
ImageButton
;
14
private
ImageButton
mDeleteButton;
44
mDeleteButton = (
ImageButton
) findViewById(R.id.attachment_tile_close_button);
/frameworks/base/core/res/res/layout/
media_controller.xml
31
<
ImageButton
android:id="@+id/prev" style="@android:style/MediaButton.Previous" />
32
<
ImageButton
android:id="@+id/rew" style="@android:style/MediaButton.Rew" />
33
<
ImageButton
android:id="@+id/pause" style="@android:style/MediaButton.Play" />
34
<
ImageButton
android:id="@+id/ffwd" style="@android:style/MediaButton.Ffwd" />
35
<
ImageButton
android:id="@+id/next" style="@android:style/MediaButton.Next" />
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
CallFragment.java
19
import android.widget.
ImageButton
;
31
private
ImageButton
disconnectButton;
32
private
ImageButton
cameraSwitchButton;
33
private
ImageButton
videoScalingButton;
60
(
ImageButton
) controlView.findViewById(R.id.button_call_disconnect);
62
(
ImageButton
) controlView.findViewById(R.id.button_call_switch_camera);
64
(
ImageButton
) controlView.findViewById(R.id.button_call_scaling_mode);
/frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
BaselineButtonsTest.java
23
import android.widget.
ImageButton
;
31
private
ImageButton
mPrev;
32
private
ImageButton
mNext;
33
private
ImageButton
mPause;
47
mPrev = (
ImageButton
) activity.findViewById(R.id.prev);
48
mNext = (
ImageButton
) activity.findViewById(R.id.next);
49
mPause = (
ImageButton
) activity.findViewById(R.id.pause);
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
MainPanel.java
25
import android.widget.
ImageButton
;
38
private
ImageButton
looksButton;
39
private
ImageButton
bordersButton;
40
private
ImageButton
geometryButton;
41
private
ImageButton
filtersButton;
96
looksButton = (
ImageButton
) mMainView.findViewById(R.id.fxButton);
97
bordersButton = (
ImageButton
) mMainView.findViewById(R.id.borderButton);
98
geometryButton = (
ImageButton
) mMainView.findViewById(R.id.geometryButton);
99
filtersButton = (
ImageButton
) mMainView.findViewById(R.id.colorsButton);
245
public void setToggleVersionsPanelButton(
ImageButton
button)
[
all
...]
/cts/apps/CtsVerifier/res/layout/
pass_fail_buttons.xml
21
<
ImageButton
android:id="@+id/pass_button"
28
<
ImageButton
android:id="@+id/info_button"
36
<
ImageButton
android:id="@+id/fail_button"
/developers/build/prebuilts/gradle/MediaBrowserService/Application/src/main/res/layout/
fragment_list.xml
28
<
ImageButton
36
<
ImageButton
44
<
ImageButton
/developers/samples/android/media/MediaBrowserService/Application/src/main/res/layout/
fragment_list.xml
28
<
ImageButton
36
<
ImageButton
44
<
ImageButton
/development/samples/Support4Demos/res/layout/
fragment_list.xml
28
<
ImageButton
36
<
ImageButton
44
<
ImageButton
/development/samples/browseable/MediaBrowserService/res/layout/
fragment_list.xml
28
<
ImageButton
36
<
ImageButton
44
<
ImageButton
/frameworks/base/core/tests/coretests/src/android/widget/listview/
ListRecyclerProfiling.java
23
import android.widget.
ImageButton
;
48
ImageButton
stopProfiling = (
ImageButton
) findViewById(R.id.pause);
/frameworks/support/graphics/drawable/animated/tests/src/android/support/graphics/drawable/tests/
AnimatedVectorDrawableTest.java
34
import android.widget.
ImageButton
;
183
final
ImageButton
imageButton
=
184
(
ImageButton
) mActivityTestRule.getActivity().findViewById(R.id.
imageButton
);
185
final int viewW =
imageButton
.getWidth();
186
final int viewH =
imageButton
.getHeight();
190
final Bitmap bitmap = Bitmap.createBitmap(
imageButton
.getWidth(),
imageButton
.getHeight(),
200
imageButton
.setBackgroundDrawable(avd)
[
all
...]
Completed in 960 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>