/frameworks/support/v4/jellybean-mr1/android/support/v4/widget/ |
TextViewCompatJbMr1.java | 23 import android.widget.TextView; 27 public static void setCompoundDrawablesRelative(@NonNull TextView textView, 30 boolean rtl = textView.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL; 31 textView.setCompoundDrawables(rtl ? end : start, top, rtl ? start : end, bottom); 34 public static void setCompoundDrawablesRelativeWithIntrinsicBounds(@NonNull TextView textView, 37 boolean rtl = textView.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL; 38 textView.setCompoundDrawablesWithIntrinsicBounds(rtl ? end : start, top, rtl ? start : end, 42 public static void setCompoundDrawablesRelativeWithIntrinsicBounds(@NonNull TextView textView [all...] |
/packages/apps/Dialer/src/com/android/dialer/calllog/ |
PhoneCallDetailsViews.java | 22 import android.widget.TextView; 30 public final TextView nameView; 33 public final TextView callLocationAndDate; 34 public final TextView voicemailTranscriptionView; 35 public final TextView callAccountLabel; 37 private PhoneCallDetailsViews(TextView nameView, View callTypeView, 38 CallTypeIconsView callTypeIcons, TextView callLocationAndDate, 39 TextView voicemailTranscriptionView, TextView callAccountLabel) { 56 return new PhoneCallDetailsViews((TextView) view.findViewById(R.id.name) [all...] |
/cts/tests/app/src/android/app/cts/ |
MockApplicationActivity.java | 21 import android.widget.TextView; 28 TextView textView = new TextView(this); 29 textView.setText("Test"); 30 setContentView(textView);
|
/developers/samples/android/content/DirectShare/Application/src/main/java/com/example/android/directshare/ |
ContactViewBinder.java | 19 import android.widget.TextView; 22 * A simple utility to bind a {@link TextView} with a {@link Contact}. 27 * Binds the {@code textView} with the specified {@code contact}. 30 * @param textView The TextView. 32 public static void bind(Contact contact, TextView textView) { 33 textView.setText(contact.getName()); 34 textView.setCompoundDrawablesRelativeWithIntrinsicBounds(contact.getIcon(), 0, 0, 0);
|
/device/google/accessory/demokit/app/res/layout/ |
templightcontainer.xml | 9 <TextView android:id="@+id/tempLabel" android:text="Temp" 11 android:layout_weight="1"></TextView> 12 <TextView android:text="45º" android:id="@+id/tempValue" 13 style="@style/DemoKitMeasurement" android:layout_weight="1"></TextView> 14 <TextView android:text=" " android:id="@+id/hiddenPercentValue" 16 android:layout_weight="1"></TextView> 21 <TextView android:id="@+id/lightPercentLabel" android:text="Light" 23 android:layout_weight="1"></TextView> 27 <TextView android:text="23" android:id="@+id/lightPercentValue" 28 style="@style/DemoKitMeasurement"></TextView> [all...] |
/frameworks/base/tests/HwAccelerationTest/res/layout/ |
z_ordering.xml | 12 <TextView style="@style/TopLeftReorderTextView"/> 13 <TextView style="@style/BottomLeftReorderTextView"/> 14 <TextView style="@style/TopRightReorderTextView"/> 15 <TextView style="@style/BottomRightReorderTextView"/>
|
/frameworks/base/tests/SharedLibrary/lib/res/layout/ |
address.xml | 4 <TextView android:id="@+id/name" 7 <TextView android:id="@+id/street" 10 <TextView android:id="@+id/cityStateZip" 13 <TextView android:id="@+id/country"
|
/frameworks/base/tests/SharedLibrary/lib/src/com/google/android/test/shared_library/ |
AddressView.java | 9 import android.widget.TextView; 12 private TextView mNameView; 13 private TextView mStreetView; 14 private TextView mCityStateZipView; 15 private TextView mCountryView; 22 mNameView = (TextView) view.findViewById(R.id.name); 23 mStreetView = (TextView) view.findViewById(R.id.street); 24 mCityStateZipView = (TextView) view.findViewById(R.id.cityStateZip); 25 mCountryView = (TextView) view.findViewById(R.id.country);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/ |
completion1-expected-completion10.txt | 7 TextView
|
completion2.xml | 4 <TextView android:gravity="left|bottom|cen"></TextView>
|
/development/samples/ApiDemos/res/layout/ |
scrollbar1.xml | 28 <TextView 32 <TextView 36 <TextView 40 <TextView 44 <TextView 48 <TextView 52 <TextView 56 <TextView 60 <TextView 64 <TextView [all...] |
scrollbar2.xml | 31 <TextView 35 <TextView 39 <TextView 43 <TextView 47 <TextView 51 <TextView 55 <TextView 59 <TextView 63 <TextView 67 <TextView [all...] |
table_layout_3.xml | 25 <TextView 28 <TextView 31 <TextView 37 <TextView 40 <TextView 43 <TextView 46 <TextView 52 <TextView 55 <TextView 58 <TextView [all...] |
/frameworks/base/core/java/android/text/method/ |
ScrollingMovementMethod.java | 21 import android.widget.TextView; 29 protected boolean left(TextView widget, Spannable buffer) { 34 protected boolean right(TextView widget, Spannable buffer) { 39 protected boolean up(TextView widget, Spannable buffer) { 44 protected boolean down(TextView widget, Spannable buffer) { 49 protected boolean pageUp(TextView widget, Spannable buffer) { 54 protected boolean pageDown(TextView widget, Spannable buffer) { 59 protected boolean top(TextView widget, Spannable buffer) { 64 protected boolean bottom(TextView widget, Spannable buffer) { 69 protected boolean lineStart(TextView widget, Spannable buffer) [all...] |
/sdk/testapps/javaProjectTest/app/src/com/android/tests/javaprojecttest/app/ |
Main.java | 5 import android.widget.TextView; 23 TextView tv = (TextView) findViewById(R.id.app); 26 tv = (TextView) findViewById(R.id.lib1); 29 tv = (TextView) findViewById(R.id.lib2); 32 tv = (TextView) findViewById(R.id.javaProject1); 35 tv = (TextView) findViewById(R.id.javaProject2); 38 tv = (TextView) findViewById(R.id.javaProject3); 41 tv = (TextView) findViewById(R.id.basicJar); 44 tv = (TextView) findViewById(R.id.basicJar2) [all...] |
/development/apps/Development/src/com/android/development/ |
ShowActivity.java | 32 import android.widget.TextView; 39 private TextView mPackage; 41 private TextView mClass; 42 private TextView mLabel; 43 private TextView mLaunch; 44 private TextView mProcess; 45 private TextView mTaskAffinity; 46 private TextView mPermission; 47 private TextView mMultiprocess; 48 private TextView mClearOnBackground [all...] |
/packages/apps/CertInstaller/src/com/android/certinstaller/ |
ViewHelper.java | 20 import android.widget.TextView; 34 TextView v = (TextView) mView.findViewById(R.id.error); 40 return ((TextView) mView.findViewById(viewId)).getText().toString(); 45 TextView v = (TextView) mView.findViewById(viewId); 50 TextView v = (TextView) mView.findViewById(viewId);
|
/packages/experimental/PrintService/res/layout/ |
activity_main.xml | 7 <TextView 11 </TextView>
|
/packages/experimental/PrintService2/res/layout/ |
activity_main.xml | 7 <TextView 11 </TextView>
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/refactoring/usecompound/ |
compound5-expected-7.xml | 2 <TextView xmlns:android="http://schemas.android.com/apk/res/android" 9 </TextView
|
/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/src/main/res/layout/ |
expand_layout.xml | 4 <TextView 9 <TextView 14 <TextView 19 <TextView 24 <TextView
|
/packages/apps/Settings/res/layout/ |
wifi_status_test.xml | 34 <TextView android:text="@string/wifi_state_label" style="@style/info_label" /> 35 <TextView android:id="@+id/wifi_state" style="@style/info_value" /> 40 <TextView android:text="@string/network_state_label" style="@style/info_label" /> 41 <TextView android:id="@+id/network_state" style="@style/info_value" /> 46 <TextView android:text="@string/supplicant_state_label" style="@style/info_label" /> 47 <TextView android:id="@+id/supplicant_state" style="@style/info_value" /> 52 <TextView android:text="@string/rssi_label" style="@style/info_label" /> 53 <TextView android:id="@+id/rssi" style="@style/info_value" /> 58 <TextView android:text="@string/bssid_label" style="@style/info_label" /> 59 <TextView android:id="@+id/bssid" style="@style/info_value" / [all...] |
radio_info.xml | 28 <TextView android:text="@string/radio_info_imei_label" style="@style/info_label" /> 29 <TextView android:id="@+id/imei" style="@style/info_value" /> 34 <TextView android:text="@string/radio_info_phone_number_label" style="@style/info_label" /> 35 <TextView android:id="@+id/number" style="@style/info_value" /> 40 <TextView android:text="@string/radio_info_current_network_label" style="@style/info_label" /> 41 <TextView android:id="@+id/operator" style="@style/info_value" /> 54 <TextView android:text="@string/radio_info_ping_ipaddr" style="@style/info_label" /> 55 <TextView android:id="@+id/pingIpAddr" style="@style/info_value" /> 59 <TextView android:text="@string/radio_info_ping_hostname" style="@style/info_label" /> 60 <TextView android:id="@+id/pingHostname" style="@style/info_value" / [all...] |
/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/ |
EnvReverbTest.java | 30 import android.widget.TextView; 58 TextView mSendLevelDisplay; 72 TextView textView; 78 textView = (TextView) findViewById(R.id.sessionText); 81 R.id.stop1, stop, textView, 85 R.id.stop1, stop, textView, 91 mSendLevelDisplay = (TextView)findViewById(R.id.sendLevelValue); 114 textView = (TextView)findViewById(R.id.rvbParam1Value) [all...] |
/frameworks/base/core/java/com/android/internal/widget/ |
TextViewInputDisabler.java | 21 import android.widget.TextView; 24 * Helper class to disable input on a TextView. The input is disabled by swapping in an InputFilter 26 * TextView. 29 private TextView mTextView; 41 public TextViewInputDisabler(TextView textView) { 42 mTextView = textView;
|