blob: ea08a6af02ae6f71002c1da7e2e6c4051e8d2dd2 [file] [log] [blame]
Fabrice Di Meglio2a7e7a02012-02-09 17:32:24 -08001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.bidi;
18
19import android.app.Fragment;
20import android.content.Context;
21import android.os.Bundle;
22import android.view.LayoutInflater;
23import android.view.View;
24import android.view.ViewGroup;
Tor Norbyea7726272013-09-13 14:19:53 -070025import android.widget.Button;
26import android.widget.EditText;
27import android.widget.FrameLayout;
Fabrice Di Meglio2a7e7a02012-02-09 17:32:24 -080028import android.widget.GridLayout;
Tor Norbyea7726272013-09-13 14:19:53 -070029import android.widget.Space;
30import android.widget.TextView;
Fabrice Di Meglio2a7e7a02012-02-09 17:32:24 -080031
Tor Norbyea7726272013-09-13 14:19:53 -070032import static android.text.InputType.TYPE_CLASS_TEXT;
33import static android.text.InputType.TYPE_TEXT_VARIATION_EMAIL_ADDRESS;
34import static android.text.InputType.TYPE_TEXT_VARIATION_PASSWORD;
35import static android.widget.GridLayout.ALIGN_BOUNDS;
36import static android.widget.GridLayout.BASELINE;
37import static android.widget.GridLayout.CENTER;
38import static android.widget.GridLayout.FILL;
39import static android.widget.GridLayout.LEFT;
40import static android.widget.GridLayout.RIGHT;
41import static android.widget.GridLayout.START;
42import static android.widget.GridLayout.Spec;
43import static android.widget.GridLayout.spec;
Fabrice Di Meglio2a7e7a02012-02-09 17:32:24 -080044
45public class BiDiTestGridLayoutCodeLtr extends Fragment {
46
47 private FrameLayout currentView;
48
49 @Override
50 public View onCreateView(LayoutInflater inflater, ViewGroup container,
51 Bundle savedInstanceState) {
52 currentView = (FrameLayout) inflater.inflate(R.layout.grid_layout_code, container, false);
53 return currentView;
54 }
55
56 @Override
57 public void onViewCreated(View view, Bundle savedInstanceState) {
58 super.onViewCreated(view, savedInstanceState);
59 currentView.addView(create(currentView.getContext()));
60 }
61
62 public static View create(Context context) {
63 GridLayout layout = new GridLayout(context);
64 layout.setUseDefaultMargins(true);
65 layout.setAlignmentMode(ALIGN_BOUNDS);
66 layout.setRowOrderPreserved(false);
67 layout.setLayoutDirection(View.LAYOUT_DIRECTION_LTR);
68
69 Spec row1 = spec(0);
70 Spec row2 = spec(1);
71 Spec row3 = spec(2, BASELINE);
72 Spec row4 = spec(3, BASELINE);
73 Spec row5 = spec(2, 3, FILL); // allow the last two rows to overlap the middle two
74 Spec row6 = spec(5);
75 Spec row7 = spec(6);
76
77 Spec col1a = spec(0, 4, CENTER);
Fabrice Di Meglio0d2bda32012-02-13 14:29:03 -080078 Spec col1b = spec(0, 4, LEFT);
79 Spec col1c = spec(0, RIGHT);
Fabrice Di Meglio2a7e7a02012-02-09 17:32:24 -080080 Spec col2 = spec(1, START);
81 Spec col3 = spec(2, FILL);
82 Spec col4a = spec(3);
83 Spec col4b = spec(3, FILL);
84
85 {
86 TextView c = new TextView(context);
87 c.setTextSize(32);
88 c.setText("Email setup");
89 layout.addView(c, new GridLayout.LayoutParams(row1, col1a));
90 }
91 {
92 TextView c = new TextView(context);
93 c.setTextSize(16);
94 c.setText("You can configure email in just a few steps:");
95 layout.addView(c, new GridLayout.LayoutParams(row2, col1b));
96 }
97 {
98 TextView c = new TextView(context);
99 c.setText("Email address:");
100 layout.addView(c, new GridLayout.LayoutParams(row3, col1c));
101 }
102 {
103 EditText c = new EditText(context);
104 c.setEms(10);
105 c.setInputType(TYPE_CLASS_TEXT | TYPE_TEXT_VARIATION_EMAIL_ADDRESS);
106 layout.addView(c, new GridLayout.LayoutParams(row3, col2));
107 }
108 {
109 TextView c = new TextView(context);
110 c.setText("Password:");
111 layout.addView(c, new GridLayout.LayoutParams(row4, col1c));
112 }
113 {
114 TextView c = new EditText(context);
115 c.setEms(8);
116 c.setInputType(TYPE_CLASS_TEXT | TYPE_TEXT_VARIATION_PASSWORD);
117 layout.addView(c, new GridLayout.LayoutParams(row4, col2));
118 }
119 {
120 Space c = new Space(context);
121 layout.addView(c, new GridLayout.LayoutParams(row5, col3));
122 }
123 {
124 Button c = new Button(context);
125 c.setText("Manual setup");
126 layout.addView(c, new GridLayout.LayoutParams(row6, col4a));
127 }
128 {
129 Button c = new Button(context);
130 c.setText("Next");
131 layout.addView(c, new GridLayout.LayoutParams(row7, col4b));
132 }
133
134 return layout;
135 }
136}