CreateViewTestpublic class CreateViewTest extends android.test.AndroidTestCase implements android.test.PerformanceTestCase
Methods Summary |
---|
public boolean | isPerformanceOnly()
return false;
| public int | startPerformance(PerformanceTestCase.Intermediates intermediates)
return 0;
| public void | testLayout1()
new CreateViewTest.ViewOne(mContext);
| public void | testLayout2()
LinearLayout vert = new LinearLayout(mContext);
vert.addView(new CreateViewTest.ViewOne(mContext),
new LinearLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT, 0));
| public void | testLayout3()
LinearLayout vert = new LinearLayout(mContext);
ViewOne one = new ViewOne(mContext);
vert.addView(one, new LinearLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT, 0));
ViewOne two = new ViewOne(mContext);
vert.addView(two, new LinearLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT, 0));
ViewOne three = new ViewOne(mContext);
vert.addView(three, new LinearLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT, 0));
ViewOne four = new ViewOne(mContext);
vert.addView(four, new LinearLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT, 0));
ViewOne five = new ViewOne(mContext);
vert.addView(five, new LinearLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT, 0));
ViewOne six = new ViewOne(mContext);
vert.addView(six, new LinearLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT, 0));
| public void | testLayout4()
TextView text = new TextView(mContext);
text.setText("S");
| public void | testLayout5()
TextView text = new TextView(mContext);
text.setText("S");
LinearLayout vert = new LinearLayout(mContext);
vert.addView(text, new LinearLayout.LayoutParams(MATCH_PARENT, WRAP_CONTENT, 0));
| public void | testLayout6()
LinearLayout vert = new LinearLayout(mContext);
TextView one = new TextView(mContext);
one.setText("S");
vert.addView(one, new LinearLayout.LayoutParams(MATCH_PARENT, WRAP_CONTENT, 0));
TextView two = new TextView(mContext);
two.setText("M");
vert.addView(two, new LinearLayout.LayoutParams(MATCH_PARENT, WRAP_CONTENT, 0));
TextView three = new TextView(mContext);
three.setText("T");
vert.addView(three, new LinearLayout.LayoutParams(MATCH_PARENT, WRAP_CONTENT, 0));
TextView four = new TextView(mContext);
four.setText("W");
vert.addView(four, new LinearLayout.LayoutParams(MATCH_PARENT, WRAP_CONTENT, 0));
TextView five = new TextView(mContext);
five.setText("H");
vert.addView(five, new LinearLayout.LayoutParams(MATCH_PARENT, WRAP_CONTENT, 0));
TextView six = new TextView(mContext);
six.setText("F");
vert.addView(six, new LinearLayout.LayoutParams(MATCH_PARENT, WRAP_CONTENT, 0));
|
|