OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:tablelayout
(Results
26 - 50
of
332
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/frameworks/base/tests/BiDiTests/res/layout/
table_layout_ltr.xml
27
<
TableLayout
android:layout_width="wrap_content"
70
</
TableLayout
>
72
<
TableLayout
android:layout_width="wrap_content"
116
</
TableLayout
>
118
<
TableLayout
android:layout_width="wrap_content"
162
</
TableLayout
>
164
<
TableLayout
android:layout_width="wrap_content"
208
</
TableLayout
>
210
<
TableLayout
android:layout_width="wrap_content"
254
</
TableLayout
>
[
all
...]
table_layout_rtl.xml
27
<
TableLayout
android:layout_width="wrap_content"
70
</
TableLayout
>
72
<
TableLayout
android:layout_width="wrap_content"
116
</
TableLayout
>
118
<
TableLayout
android:layout_width="wrap_content"
162
</
TableLayout
>
164
<
TableLayout
android:layout_width="wrap_content"
208
</
TableLayout
>
210
<
TableLayout
android:layout_width="wrap_content"
254
</
TableLayout
>
[
all
...]
/packages/apps/Contacts/tests/src/com/android/contacts/tests/allintents/
ResultActivity.java
36
import android.widget.
TableLayout
;
178
TableLayout
table = (
TableLayout
)findViewById(R.id.table);
188
TableLayout
table = (
TableLayout
)findViewById(R.id.table);
190
TableLayout
.LayoutParams params = new
TableLayout
.LayoutParams();
/cts/tests/tests/widget/src/android/widget/cts/
TableCtsActivity.java
24
* A minimal application for
TableLayout
test.
TableLayoutTest.java
46
import android.widget.
TableLayout
;
56
* Test {@link
TableLayout
}.
62
private
TableLayout
mTableDefault;
63
private
TableLayout
mTableEmpty;
73
mTableDefault = (
TableLayout
) mActivity.findViewById(R.id.table1);
74
mTableEmpty = (
TableLayout
) mActivity.findViewById(R.id.table_empty);
81
new
TableLayout
(mActivity);
83
new
TableLayout
(mActivity, null);
89
TableLayout
tableLayout
= (TableLayout) mActivity.findViewById(R.id.table2)
[
all
...]
/frameworks/layoutlib/create/tests/mock_data/mock_android/widget/
TableLayout.java
21
public class
TableLayout
extends ViewGroup {
/sdk/apps/SdkController/res/layout/
sensors.xml
27
<
TableLayout
89
</
TableLayout
>
103
<
TableLayout
104
android:id="@+id/
tableLayout
"
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/mock_android/widget/
TableLayout.java
21
public class
TableLayout
extends ViewGroup {
/cts/tests/tests/view/res/layout/
focus_finder_layout.xml
19
<
TableLayout
android:id="@+id/layout"
44
</
TableLayout
>
/development/samples/ApiDemos/res/layout/
layout_animation_7.xml
17
<
TableLayout
xmlns:android="http://schemas.android.com/apk/res/android"
57
</
TableLayout
>
table_layout_1.xml
17
<
TableLayout
xmlns:android="http://schemas.android.com/apk/res/android"
56
</
TableLayout
>
table_layout_10.xml
17
<
TableLayout
xmlns:android="http://schemas.android.com/apk/res/android"
58
</
TableLayout
>
table_layout_3.xml
17
<
TableLayout
xmlns:android="http://schemas.android.com/apk/res/android"
62
</
TableLayout
>
sms_demo.xml
41
<
TableLayout
65
</
TableLayout
>
table_layout_11.xml
17
<
TableLayout
xmlns:android="http://schemas.android.com/apk/res/android"
93
</
TableLayout
>
table_layout_12.xml
17
<
TableLayout
xmlns:android="http://schemas.android.com/apk/res/android"
85
</
TableLayout
>
table_layout_5.xml
18
<
TableLayout
xmlns:android="http://schemas.android.com/apk/res/android"
82
</
TableLayout
>
table_layout_6.xml
18
<
TableLayout
xmlns:android="http://schemas.android.com/apk/res/android"
92
</
TableLayout
>
table_layout_8.xml
21
<
TableLayout
80
</
TableLayout
>
table_layout_9.xml
24
<
TableLayout
84
</
TableLayout
>
/frameworks/base/core/tests/coretests/res/layout/
table_layout_fixed_width.xml
21
<
TableLayout
xmlns:android="http://schemas.android.com/apk/res/android"
56
</
TableLayout
>
/frameworks/base/packages/VpnDialogs/res/layout/
manage.xml
18
<
TableLayout
xmlns:android="http://schemas.android.com/apk/res/android"
45
</
TableLayout
>
/frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
TableLayoutBindingAdapterTest.java
23
import android.widget.
TableLayout
;
28
TableLayout
mView;
/frameworks/base/core/java/android/widget/
TableLayout.java
32
* A
TableLayout
consists of a number of {@link android.widget.TableRow} objects,
34
* explained below).
TableLayout
containers do not display border lines for
41
* column. However, a
TableLayout
can specify certain columns as shrinkable or
54
* <p>The children of a
TableLayout
cannot specify the <code>layout_width</code>
57
* is {@link android.widget.
TableLayout
.LayoutParams#WRAP_CONTENT}. If the child
59
* {@link android.widget.
TableLayout
.LayoutParams#WRAP_CONTENT}.</p>
65
*
TableLayout
examples in ApiDemos for examples of creating tables in XML.</p>
67
* <p>Although the typical child of a
TableLayout
is a TableRow, you can
68
* actually use any View subclass as a direct child of
TableLayout
. The View
72
public class
TableLayout
extends LinearLayout
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/sdk/
LayoutParamsParserTest.java
97
assertEquals(mock_android.widget.
TableLayout
.LayoutParams.class,
98
((ClassWrapper)_findLayoutParams(mock_android.widget.
TableLayout
.class)).wrappedClass());
115
mock_android.widget.
TableLayout
.LayoutParams.class);
117
//
TableLayout
.LayoutData does not link to ViewGroup.LayoutParams nor
121
//
TableLayout
.LayoutParams => ViewGroup.MarginLayoutParams => ViewGroup.LayoutParams
Completed in 856 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>