use of android.view.Include in project platform_frameworks_base by android.
the class IncludeTest method testIncludedWithSize.
// TODO: needs to be adjusted to pass on non-HVGA displays
// @MediumTest
public void testIncludedWithSize() throws Exception {
final Include activity = getActivity();
final View button1 = activity.findViewById(R.id.included_button_with_size);
final ViewGroup.LayoutParams lp = button1.getLayoutParams();
assertEquals("Included button should be 23dip x 23dip", 23, lp.width);
assertEquals("Included button should be 23dip x 23dip", 23, lp.height);
}
use of android.view.Include in project platform_frameworks_base by android.
the class IncludeTest method testIncludedWithVisibility.
@MediumTest
public void testIncludedWithVisibility() throws Exception {
final Include activity = getActivity();
final View button1 = activity.findViewById(R.id.included_button_visibility);
assertEquals("Included button should be invisible", View.INVISIBLE, button1.getVisibility());
}
use of android.view.Include in project platform_frameworks_base by android.
the class IncludeTest method testIncludedWithLayoutParams.
@MediumTest
public void testIncludedWithLayoutParams() throws Exception {
final Include activity = getActivity();
final View button1 = activity.findViewById(R.id.included_button);
final View button2 = activity.findViewById(R.id.included_button_overriden);
assertTrue("Both buttons should have different width", button1.getLayoutParams().width != button2.getLayoutParams().width);
assertTrue("Both buttons should have different height", button1.getLayoutParams().height != button2.getLayoutParams().height);
}
use of android.view.Include in project android_frameworks_base by ParanoidAndroid.
the class IncludeTest method testIncludedWithSize.
// TODO: needs to be adjusted to pass on non-HVGA displays
// @MediumTest
public void testIncludedWithSize() throws Exception {
final Include activity = getActivity();
final View button1 = activity.findViewById(R.id.included_button_with_size);
final ViewGroup.LayoutParams lp = button1.getLayoutParams();
assertEquals("Included button should be 23dip x 23dip", 23, lp.width);
assertEquals("Included button should be 23dip x 23dip", 23, lp.height);
}
use of android.view.Include in project android_frameworks_base by ParanoidAndroid.
the class IncludeTest method testIncludedWithVisibility.
@MediumTest
public void testIncludedWithVisibility() throws Exception {
final Include activity = getActivity();
final View button1 = activity.findViewById(R.id.included_button_visibility);
assertEquals("Included button should be invisible", View.INVISIBLE, button1.getVisibility());
}
Aggregations