HomeSort by relevance Sort by last modified time
    Searched full:textswitcher (Results 1 - 25 of 165) sorted by null

1 2 3 4 5 6 7

  /development/samples/browseable/TextSwitcher/
_index.jd 2 page.tags="TextSwitcher"
8 This sample illustrates the use of a TextSwitcher to display text.
9 \n\nClick the button below to set new text in the TextSwitcher and observe the
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
completion1-expected-completion10.txt 6 TextSwitcher
completion1-expected-completion11.txt 48 <TextSwitcher ></TextSwitcher>
completion1-expected-completion12.txt 48 <TextSwitcher ></TextSwitcher>
completion9-expected-completion64.txt 48 <TextSwitcher ></TextSwitcher>
  /developers/samples/android/ui/views/TextSwitcher/
template-params.xml 18 <name>TextSwitcher</name>
20 <package>com.example.android.textswitcher</package>
28 This sample illustrates the use of a TextSwitcher to display text.
29 \n\nClick the button below to set new text in the TextSwitcher and observe the
50 <android>android.widget.TextSwitcher</android>
55 This sample illustrates the use of a TextSwitcher to display animations for text changes.
61 This sample shows the use of the [android.widget.TextSwitcher][1] View with animations. A
62 TextSwitcher is a special type of [android.widget.ViewSwitcher][2] that animates
64 [android.widget.TextSwitcher#setText(CharSequence)][3] is called.
66 Click the "Next" button to set new text in the TextSwitcher and observe th
    [all...]
README.md 2 Android TextSwitcher Sample
5 This sample illustrates the use of a TextSwitcher to display animations for text changes.
10 This sample shows the use of the [android.widget.TextSwitcher][1] View with animations. A
11 TextSwitcher is a special type of [android.widget.ViewSwitcher][2] that animates
13 [android.widget.TextSwitcher#setText(CharSequence)][3] is called.
15 Click the "Next" button to set new text in the TextSwitcher and observe the
18 [1]: http://developer.android.com/reference/android/widget/TextSwitcher.html
20 [3]: http://developer.android.com/reference/android/widget/TextSwitcher.html#setText(java.lang.CharSequence)
47 https://github.com/googlesamples/android-TextSwitcher
packaging.yaml 12 github: googlesamples/android-TextSwitcher
  /developers/build/prebuilts/gradle/TextSwitcher/.google/
packaging.yaml 12 github: android-TextSwitcher
16 - android:android.widget.TextSwitcher
  /frameworks/base/core/java/android/widget/
TextSwitcher.java 29 * A TextSwitcher is useful to animate a label on screen. Whenever
30 * {@link #setText(CharSequence)} is called, TextSwitcher animates the current text
33 public class TextSwitcher extends ViewSwitcher {
35 * Creates a new empty TextSwitcher.
39 public TextSwitcher(Context context) {
44 * Creates a new empty TextSwitcher for the given context and with the
50 public TextSwitcher(Context context, AttributeSet attrs) {
64 "TextSwitcher children must be instances of TextView");
94 return TextSwitcher.class.getName();
  /developers/build/prebuilts/gradle/TextSwitcher/Application/src/main/res/values/
base-strings.xml 19 <string name="app_name">TextSwitcher</string>
24 This sample illustrates the use of a TextSwitcher to display text.
25 \n\nClick the button below to set new text in the TextSwitcher and observe the
strings.xml 20 <string name="intro">This sample illustrates the use of a <b>TextSwitcher</b> to display text.
21 \n\n<b>Click the button</b> below to set new text in the TextSwitcher and observe the in and out
  /development/samples/browseable/TextSwitcher/res/values/
base-strings.xml 19 <string name="app_name">TextSwitcher</string>
24 This sample illustrates the use of a TextSwitcher to display text.
25 \n\nClick the button below to set new text in the TextSwitcher and observe the
strings.xml 20 <string name="intro">This sample illustrates the use of a <b>TextSwitcher</b> to display text.
21 \n\n<b>Click the button</b> below to set new text in the TextSwitcher and observe the in and out
  /developers/build/prebuilts/gradle/TextSwitcher/Application/src/main/java/com/example/android/textswitcher/
MainActivity.java 17 package com.example.android.textswitcher;
26 import android.widget.TextSwitcher;
31 * This sample shows the use of the {@link android.widget.TextSwitcher} View with animations. A
32 * {@link android.widget.TextSwitcher} is a special type of {@link android.widget.ViewSwitcher} that animates
34 * {@link android.widget.TextSwitcher#setText(CharSequence)} is called.
37 private TextSwitcher mSwitcher;
45 // Get the TextSwitcher view from the layout
46 mSwitcher = (TextSwitcher) findViewById(R.id.switcher);
66 * the new value is displayed in the TextSwitcher. The change of text is
89 * {@link android.widget.TextSwitcher} will switch between
    [all...]
  /developers/samples/android/ui/views/TextSwitcher/Application/src/main/java/com/example/android/textswitcher/
MainActivity.java 17 package com.example.android.textswitcher;
26 import android.widget.TextSwitcher;
31 * This sample shows the use of the {@link android.widget.TextSwitcher} View with animations. A
32 * {@link android.widget.TextSwitcher} is a special type of {@link android.widget.ViewSwitcher} that animates
34 * {@link android.widget.TextSwitcher#setText(CharSequence)} is called.
37 private TextSwitcher mSwitcher;
45 // Get the TextSwitcher view from the layout
46 mSwitcher = (TextSwitcher) findViewById(R.id.switcher);
66 * the new value is displayed in the TextSwitcher. The change of text is
89 * {@link android.widget.TextSwitcher} will switch between
    [all...]
  /development/samples/browseable/TextSwitcher/src/com.example.android.textswitcher/
MainActivity.java 17 package com.example.android.textswitcher;
26 import android.widget.TextSwitcher;
31 * This sample shows the use of the {@link android.widget.TextSwitcher} View with animations. A
32 * {@link android.widget.TextSwitcher} is a special type of {@link android.widget.ViewSwitcher} that animates
34 * {@link android.widget.TextSwitcher#setText(CharSequence)} is called.
37 private TextSwitcher mSwitcher;
45 // Get the TextSwitcher view from the layout
46 mSwitcher = (TextSwitcher) findViewById(R.id.switcher);
66 * the new value is displayed in the TextSwitcher. The change of text is
89 * {@link android.widget.TextSwitcher} will switch between
    [all...]
  /developers/build/prebuilts/gradle/TextSwitcher/
README.md 2 Android TextSwitcher Sample
5 This sample illustrates the use of a TextSwitcher to display animations for text changes.
10 This sample shows the use of the [android.widget.TextSwitcher][1] View with animations. A
11 TextSwitcher is a special type of [android.widget.ViewSwitcher][2] that animates
13 [android.widget.TextSwitcher#setText(CharSequence)][3] is called.
15 Click the "Next" button to set new text in the TextSwitcher and observe the
18 [1]: http://developer.android.com/reference/android/widget/TextSwitcher.html
20 [3]: http://developer.android.com/reference/android/widget/TextSwitcher.html#setText(java.lang.CharSequence)
47 https://github.com/googlesamples/android-TextSwitcher
packaging.yaml 12 github: googlesamples/android-TextSwitcher
  /development/samples/ApiDemos/src/com/example/android/apis/view/
TextSwitcher1.java 28 import android.widget.TextSwitcher;
33 * Uses a TextSwitcher.
38 private TextSwitcher mSwitcher;
48 mSwitcher = (TextSwitcher) findViewById(R.id.switcher);
  /developers/samples/android/ui/views/TextSwitcher/Application/src/main/res/values/
strings.xml 20 <string name="intro">This sample illustrates the use of a <b>TextSwitcher</b> to display text.
21 \n\n<b>Click the button</b> below to set new text in the TextSwitcher and observe the in and out
  /cts/tests/tests/widget/src/android/widget/cts/
TextSwitcherTest.java 30 import android.widget.TextSwitcher;
39 * Test {@link TextSwitcher}.
54 private TextSwitcher mTextSwitcher;
63 mTextSwitcher = (TextSwitcher) mActivity.findViewById(R.id.switcher);
68 new TextSwitcher(mActivity);
70 new TextSwitcher(mActivity, null);
193 mTextSwitcher = new TextSwitcher(mActivity);
  /cts/tests/tests/widget/res/layout/
textswitcher_layout.xml 23 <TextSwitcher
  /developers/build/prebuilts/gradle/TextSwitcher/Application/src/main/
AndroidManifest.xml 19 package="com.example.android.textswitcher"
  /developers/samples/android/ui/views/TextSwitcher/Application/src/main/
AndroidManifest.xml 19 package="com.example.android.textswitcher"

Completed in 3430 milliseconds

1 2 3 4 5 6 7