/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/ |
sample8.xml | 2 <LinearLayout android:id="@+id/LinearLayout2" 10 <LinearLayout android:layout_height="wrap_content" 12 <LinearLayout android:layout_height="match_parent" 14 <LinearLayout android:layout_height="match_parent" 20 </LinearLayout> 21 </LinearLayout> 22 </LinearLayout> 26 <LinearLayout android:layout_height="wrap_content" 28 <LinearLayout android:layout_height="match_parent" 30 <LinearLayout android:layout_height="match_parent [all...] |
newlayout6-expected-extract6.diff | 4 > <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_height="wrap_content" android:id="@+id/linearLayout4" android:layout_width="match_parent"> 5 > <LinearLayout android:layout_height="match_parent" android:id="@+id/linearLayout5" android:layout_width="wrap_content"> 6 > <LinearLayout android:layout_height="match_parent" android:id="@+id/linearLayout6" android:layout_width="wrap_content"> 9 > </LinearLayout> 10 > </LinearLayout> 11 > </LinearLayout>
|
newlayout6-expected-extract7.diff | 4 > <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 9 > <LinearLayout 14 > <LinearLayout 27 > </LinearLayout> 28 > </LinearLayout> 30 > </LinearLayout>
|
sample7-expected-extract6.diff | 0 < <LinearLayout android:layout_height="wrap_content" android:id="@+id/linearLayout4" android:layout_width="match_parent"> 2 < <LinearLayout android:layout_height="match_parent" android:id="@+id/linearLayout5" android:layout_width="wrap_content"> 3 < <LinearLayout android:layout_height="match_parent" android:id="@+id/linearLayout6" android:layout_width="wrap_content"> 6 < </LinearLayout> 7 < </LinearLayout> 8 < </LinearLayout>
|
sample1a-expected-changeView1.xml | 2 <LinearLayout android:id="@+id/LinearLayout2" xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> 4 <LinearLayout android:layout_width="match_parent" android:id="@+id/linearLayout1" android:layout_height="wrap_content"> 8 </LinearLayout> 10 <LinearLayout android:layout_height="wrap_content" android:id="@+id/linearLayout3" android:layout_width="match_parent"> 12 </LinearLayout> 13 <LinearLayout android:layout_height="wrap_content" android:id="@+id/linearLayout4" android:layout_width="match_parent"> 14 <LinearLayout android:layout_height="match_parent" android:id="@+id/linearLayout5" android:layout_width="wrap_content"> 15 <LinearLayout android:layout_height="match_parent" android:id="@+id/linearLayout6" android:layout_width="wrap_content"> 17 </LinearLayout> 18 </LinearLayout> [all...] |
sample1a.xml | 2 <LinearLayout android:id="@+id/LinearLayout2" xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> 4 <LinearLayout android:layout_width="match_parent" android:id="@+id/linearLayout1" android:layout_height="wrap_content"> 8 </LinearLayout> 10 <LinearLayout android:layout_height="wrap_content" android:id="@+id/linearLayout3" android:layout_width="match_parent"> 12 </LinearLayout> 13 <LinearLayout android:layout_height="wrap_content" android:id="@+id/linearLayout4" android:layout_width="match_parent"> 14 <LinearLayout android:layout_height="match_parent" android:id="@+id/linearLayout5" android:layout_width="wrap_content"> 15 <LinearLayout android:layout_height="match_parent" android:id="@+id/linearLayout6" android:layout_width="wrap_content"> 17 </LinearLayout> 18 </LinearLayout> [all...] |
sample1b.xml | 2 <LinearLayout 13 <LinearLayout 32 </LinearLayout> 38 <LinearLayout 48 </LinearLayout> 49 <LinearLayout 53 <LinearLayout 57 <LinearLayout 66 </LinearLayout> 67 </LinearLayout> [all...] |
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
TextGammaActivity.java | 29 import android.widget.LinearLayout; 37 final LinearLayout layout = new LinearLayout(this); 38 layout.setOrientation(LinearLayout.VERTICAL); 41 layout.addView(gamma, new LinearLayout.LayoutParams( 42 LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT 58 layout.addView(image, new LinearLayout.LayoutParams( 59 LinearLayout.LayoutParams.WRAP_CONTENT, 60 LinearLayout.LayoutParams.WRAP_CONTEN [all...] |
/sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/res/layout/ |
inefficient_weight.xml | 3 <LinearLayout 14 <LinearLayout 27 </LinearLayout> 29 <LinearLayout 42 </LinearLayout> 44 </LinearLayout
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/refactoring/usecompound/ |
compound1.xml | 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 7 <LinearLayout 23 </LinearLayout> 25 </LinearLayout>
|
compound2.xml | 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 7 <LinearLayout 23 </LinearLayout> 25 </LinearLayout>
|
compound3.xml | 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 7 <LinearLayout 23 </LinearLayout> 25 </LinearLayout>
|
compound4.xml | 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 7 <LinearLayout 23 </LinearLayout> 25 </LinearLayout>
|
/frameworks/base/core/tests/coretests/src/android/view/ |
CreateViewTest.java | 26 import android.widget.LinearLayout; 46 LinearLayout vert = new LinearLayout(mContext); 48 new LinearLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT, 0)); 53 LinearLayout vert = new LinearLayout(mContext); 56 vert.addView(one, new LinearLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT, 0)); 59 vert.addView(two, new LinearLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT, 0)); 62 vert.addView(three, new LinearLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT, 0)); 65 vert.addView(four, new LinearLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT, 0)) [all...] |
/packages/apps/Settings/res/layout/ |
wifi_dialog.xml | 21 <LinearLayout 26 <LinearLayout android:id="@+id/info" 29 <LinearLayout android:id="@+id/type" 33 <LinearLayout 43 </LinearLayout> 45 <LinearLayout 55 </LinearLayout> 56 </LinearLayout> 58 <LinearLayout android:id="@+id/security_fields" 62 <LinearLayout android:id="@+id/eap [all...] |
wifi_status_test.xml | 21 <LinearLayout style="@style/info_layout"> 33 <LinearLayout style="@style/entry_layout"> 36 </LinearLayout> 39 <LinearLayout style="@style/entry_layout"> 42 </LinearLayout> 45 <LinearLayout style="@style/entry_layout"> 48 </LinearLayout> 51 <LinearLayout style="@style/entry_layout"> 54 </LinearLayout> 57 <LinearLayout style="@style/entry_layout" [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
DensityActivity.java | 30 import android.widget.LinearLayout; 52 LinearLayout root = new LinearLayout(this); 53 root.setOrientation(LinearLayout.VERTICAL); 55 LinearLayout layout = new LinearLayout(this); 62 layout = new LinearLayout(this); 69 layout = new LinearLayout(this); 76 layout = (LinearLayout)li.inflate(R.layout.density_image_views, null); 80 layout = (LinearLayout)li.inflate(R.layout.density_styled_image_views, null) [all...] |
/development/ndk/platforms/android-4/samples/san-angeles/res/layout/ |
main.xml | 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 12 </LinearLayout>
|
/development/samples/ApiDemos/res/layout/ |
videoview.xml | 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 14 </LinearLayout>
|
/development/tools/templates/ |
layout.template | 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 12 </LinearLayout>
|
/external/android-mock/livetests/com/google/android/testing/mocking/test/res/layout/ |
main.xml | 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 12 </LinearLayout>
|
/external/android-mock/livetests/com/google/android/testing/mocking/testapp/res/layout/ |
main.xml | 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 12 </LinearLayout>
|
/frameworks/base/core/tests/coretests/res/layout/ |
animator_basic.xml | 3 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 11 </LinearLayout
|
/packages/apps/Mms/tests/SmsAutoReply/res/layout/ |
main.xml | 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 8 </LinearLayout>
|
/packages/wallpapers/Galaxy4/res/layout/ |
main.xml | 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 12 </LinearLayout>
|