-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bb7c8a3
commit e243612
Showing
45 changed files
with
2,164 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="line"> | ||
<solid android:color="#00ff0000"/> | ||
<stroke android:width="2px" android:color="#ffffff" /> | ||
</shape> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> | ||
<solid android:color="#00ff0000"/> | ||
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval"> | ||
<stroke android:width="2px" android:color="#ffffff" /> | ||
<solid android:color="#ffffd300"/> | ||
</shape> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> | ||
<stroke android:width="2px" android:color="#ffffff" /> | ||
<solid android:color="#ffffd300"/> | ||
</shape> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:useLevel="false" | ||
android:shape="ring" | ||
android:innerRadiusRatio="3" | ||
android:thicknessRatio="8" | ||
> | ||
<stroke android:width="2px" android:color="#ffffff" /> | ||
<solid android:color="#ffffd300"/> | ||
<size android:width="48dip" | ||
android:height="48dip" /> | ||
<!--<gradient android:type="sweep" | ||
android:useLevel="false" | ||
android:startColor="#4c737373" | ||
android:centerColor="#4c737373" | ||
android:centerY="0.50" | ||
android:endColor="#ffffd300" />--> | ||
</shape> |
21 changes: 21 additions & 0 deletions
21
YetAnotherDrawableDemo/res/layout/cameratransform_drawable_config.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<LinearLayout | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:orientation="vertical" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent"> | ||
<Button | ||
android:id="@+id/addBtn" | ||
android:text="Add New Transform" | ||
android:layout_width="fill_parent" | ||
android:layout_height="wrap_content" | ||
android:onClick="addItems"/> | ||
<CheckBox android:text="Translate to center" android:id="@+id/checkBoxCamTranslateToCenter" android:layout_width="wrap_content" android:layout_height="wrap_content"></CheckBox> | ||
<CheckBox android:text="Oval out transform" android:id="@+id/checkBoxCamOvalOutTransform" android:layout_width="wrap_content" android:layout_height="wrap_content"></CheckBox> | ||
<ListView | ||
android:id="@android:id/list" | ||
android:layout_width="fill_parent" | ||
android:layout_height="fill_parent" | ||
android:drawSelectorOnTop="false" | ||
/> | ||
</LinearLayout> |
12 changes: 12 additions & 0 deletions
12
YetAnotherDrawableDemo/res/layout/cameratransform_rotatex_config.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<LinearLayout | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:orientation="vertical" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent"> | ||
<TextView android:layout_width="wrap_content" android:id="@+id/textView2" android:layout_height="wrap_content" android:text="angle" android:textAppearance="?android:attr/textAppearanceLarge"></TextView> | ||
<EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/editAngleX" android:inputType="numberSigned"> | ||
<requestFocus></requestFocus> | ||
</EditText> | ||
</LinearLayout> | ||
|
11 changes: 11 additions & 0 deletions
11
YetAnotherDrawableDemo/res/layout/cameratransform_rotatey_config.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<LinearLayout | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:orientation="vertical" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent"> | ||
<TextView android:layout_width="wrap_content" android:id="@+id/textView2" android:layout_height="wrap_content" android:text="angle" android:textAppearance="?android:attr/textAppearanceLarge"></TextView> | ||
<EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/editAngleY" android:inputType="numberSigned"> | ||
<requestFocus></requestFocus> | ||
</EditText> | ||
</LinearLayout> |
11 changes: 11 additions & 0 deletions
11
YetAnotherDrawableDemo/res/layout/cameratransform_rotatez_config.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<LinearLayout | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:orientation="vertical" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent"> | ||
<TextView android:layout_width="wrap_content" android:id="@+id/textView2" android:layout_height="wrap_content" android:text="angle" android:textAppearance="?android:attr/textAppearanceLarge"></TextView> | ||
<EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/editAngleZ" android:inputType="numberSigned"> | ||
<requestFocus></requestFocus> | ||
</EditText> | ||
</LinearLayout> |
15 changes: 15 additions & 0 deletions
15
YetAnotherDrawableDemo/res/layout/cameratransform_translate_config.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<LinearLayout | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:orientation="vertical" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent"> | ||
<TextView android:layout_width="wrap_content" android:id="@+id/textView2" android:layout_height="wrap_content" android:text="dX" android:textAppearance="?android:attr/textAppearanceLarge"></TextView> | ||
<EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/editCamDX" android:inputType="numberSigned"> | ||
<requestFocus></requestFocus> | ||
</EditText> | ||
<TextView android:layout_width="wrap_content" android:id="@+id/textView3" android:layout_height="wrap_content" android:text="dY" android:textAppearance="?android:attr/textAppearanceLarge"></TextView> | ||
<EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/editCamDY" android:inputType="numberSigned"></EditText> | ||
<TextView android:layout_width="wrap_content" android:id="@+id/textView3" android:layout_height="wrap_content" android:text="dZ" android:textAppearance="?android:attr/textAppearanceLarge"></TextView> | ||
<EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/editCamDZ" android:inputType="numberSigned"></EditText> | ||
</LinearLayout> |
11 changes: 11 additions & 0 deletions
11
YetAnotherDrawableDemo/res/layout/code_drawable_config.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<LinearLayout | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:orientation="vertical" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent"> | ||
<CheckBox android:text="Draw rectangle" android:textAppearance="?android:attr/textAppearanceLarge" android:id="@+id/checkBoxInCodeDrawRectangle" android:layout_width="wrap_content" android:layout_height="wrap_content"></CheckBox> | ||
<CheckBox android:text="Draw oval" android:textAppearance="?android:attr/textAppearanceLarge" android:id="@+id/checkBoxInCodeDrawOval" android:layout_width="wrap_content" android:layout_height="wrap_content"></CheckBox> | ||
<CheckBox android:text="Draw arc" android:textAppearance="?android:attr/textAppearanceLarge" android:id="@+id/checkBoxInCodeDrawArc" android:layout_width="wrap_content" android:layout_height="wrap_content"></CheckBox> | ||
<CheckBox android:text="Set bounds" android:textAppearance="?android:attr/textAppearanceLarge" android:id="@+id/checkBoxInCodeSetBounds" android:layout_width="wrap_content" android:layout_height="wrap_content"></CheckBox> | ||
</LinearLayout> |
9 changes: 9 additions & 0 deletions
9
YetAnotherDrawableDemo/res/layout/drawablerect_as_background.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<LinearLayout | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:orientation="vertical" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:background="@drawable/rectangle_drawable"> | ||
|
||
</LinearLayout> |
22 changes: 22 additions & 0 deletions
22
YetAnotherDrawableDemo/res/layout/matrixtransform_drawable_config.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<LinearLayout | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:orientation="vertical" | ||
android:layout_width="fill_parent" | ||
android:layout_height="fill_parent" > | ||
<Button | ||
android:id="@+id/addBtn" | ||
android:text="Add New Transform" | ||
android:layout_width="fill_parent" | ||
android:layout_height="wrap_content" | ||
android:onClick="addItems"/> | ||
<CheckBox android:text="Translate to center" android:id="@+id/checkBoxTranslateToCenter" android:layout_width="wrap_content" android:layout_height="wrap_content"></CheckBox> | ||
<CheckBox android:text="Oval out transform" android:id="@+id/checkBoxOvalOutTransform" android:layout_width="wrap_content" android:layout_height="wrap_content"></CheckBox> | ||
<ListView | ||
android:id="@android:id/list" | ||
android:layout_width="fill_parent" | ||
android:layout_height="fill_parent" | ||
android:drawSelectorOnTop="false" | ||
/> | ||
</LinearLayout> | ||
|
18 changes: 18 additions & 0 deletions
18
YetAnotherDrawableDemo/res/layout/matrixtransform_rotate_config.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<LinearLayout | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:orientation="vertical" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent"> | ||
<TextView android:layout_width="wrap_content" android:id="@+id/textView1" android:layout_height="wrap_content" android:text="Type" android:textAppearance="?android:attr/textAppearanceMedium"></TextView> | ||
<RadioGroup android:id="@+id/radioRotationOrder" android:layout_width="wrap_content" android:layout_height="wrap_content" > | ||
<RadioButton android:text="Set" android:id="@+id/rbRotateTypeSet" android:layout_width="wrap_content" android:layout_height="wrap_content"></RadioButton> | ||
<RadioButton android:text="Pre" android:id="@+id/rbRotateTypePre" android:layout_width="wrap_content" android:layout_height="wrap_content"></RadioButton> | ||
<RadioButton android:text="Post" android:id="@+id/rbRotateTypePost" android:layout_width="wrap_content" android:layout_height="wrap_content"></RadioButton> | ||
</RadioGroup> | ||
<TextView android:layout_width="wrap_content" android:id="@+id/textView2" android:layout_height="wrap_content" android:text="angle" android:textAppearance="?android:attr/textAppearanceLarge"></TextView> | ||
<EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/editAngle" android:inputType="numberSigned"> | ||
<requestFocus></requestFocus> | ||
</EditText> | ||
|
||
</LinearLayout> |
20 changes: 20 additions & 0 deletions
20
YetAnotherDrawableDemo/res/layout/matrixtransform_scale_config.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<LinearLayout | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:orientation="vertical" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent"> | ||
<TextView android:layout_width="wrap_content" android:id="@+id/textView1" android:layout_height="wrap_content" android:text="Type" android:textAppearance="?android:attr/textAppearanceMedium"></TextView> | ||
<RadioGroup android:id="@+id/radioScaleOrder" android:layout_width="wrap_content" android:layout_height="wrap_content" > | ||
<RadioButton android:text="Set" android:id="@+id/rbScaleTypeSet" android:layout_width="wrap_content" android:layout_height="wrap_content"></RadioButton> | ||
<RadioButton android:text="Pre" android:id="@+id/rbScaleTypePre" android:layout_width="wrap_content" android:layout_height="wrap_content"></RadioButton> | ||
<RadioButton android:text="Post" android:id="@+id/rbScaleTypePost" android:layout_width="wrap_content" android:layout_height="wrap_content"></RadioButton> | ||
</RadioGroup> | ||
<TextView android:layout_width="wrap_content" android:id="@+id/textView2" android:layout_height="wrap_content" android:text="sX" android:textAppearance="?android:attr/textAppearanceLarge"></TextView> | ||
<EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/editSX" android:inputType="numberSigned"> | ||
<requestFocus></requestFocus> | ||
</EditText> | ||
<TextView android:layout_width="wrap_content" android:id="@+id/textView3" android:layout_height="wrap_content" android:text="sY" android:textAppearance="?android:attr/textAppearanceLarge"></TextView> | ||
<EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/editSY" android:inputType="numberSigned"></EditText> | ||
|
||
</LinearLayout> |
20 changes: 20 additions & 0 deletions
20
YetAnotherDrawableDemo/res/layout/matrixtransform_skew_config.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<LinearLayout | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:orientation="vertical" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent"> | ||
<TextView android:layout_width="wrap_content" android:id="@+id/textView1" android:layout_height="wrap_content" android:text="Type" android:textAppearance="?android:attr/textAppearanceMedium"></TextView> | ||
<RadioGroup android:id="@+id/radioSkewOrder" android:layout_width="wrap_content" android:layout_height="wrap_content" > | ||
<RadioButton android:text="Set" android:id="@+id/rbSkewTypeSet" android:layout_width="wrap_content" android:layout_height="wrap_content"></RadioButton> | ||
<RadioButton android:text="Pre" android:id="@+id/rbSkewTypePre" android:layout_width="wrap_content" android:layout_height="wrap_content"></RadioButton> | ||
<RadioButton android:text="Post" android:id="@+id/rbSkewTypePost" android:layout_width="wrap_content" android:layout_height="wrap_content"></RadioButton> | ||
</RadioGroup> | ||
<TextView android:layout_width="wrap_content" android:id="@+id/textView2" android:layout_height="wrap_content" android:text="kX" android:textAppearance="?android:attr/textAppearanceLarge"></TextView> | ||
<EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/editKX" android:inputType="numberDecimal"> | ||
<requestFocus></requestFocus> | ||
</EditText> | ||
<TextView android:layout_width="wrap_content" android:id="@+id/textView3" android:layout_height="wrap_content" android:text="kY" android:textAppearance="?android:attr/textAppearanceLarge"></TextView> | ||
<EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/editKY" android:inputType="numberDecimal"></EditText> | ||
|
||
</LinearLayout> |
20 changes: 20 additions & 0 deletions
20
YetAnotherDrawableDemo/res/layout/matrixtransform_translate_config.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<LinearLayout | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:orientation="vertical" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent"> | ||
<TextView android:layout_width="wrap_content" android:id="@+id/textView1" android:layout_height="wrap_content" android:text="Type" android:textAppearance="?android:attr/textAppearanceMedium"></TextView> | ||
<RadioGroup android:id="@+id/radioTranslateOrder" android:layout_width="wrap_content" android:layout_height="wrap_content" > | ||
<RadioButton android:text="Set" android:id="@+id/rbTranslateTypeSet" android:layout_width="wrap_content" android:layout_height="wrap_content"></RadioButton> | ||
<RadioButton android:text="Pre" android:id="@+id/rbTranslateTypePre" android:layout_width="wrap_content" android:layout_height="wrap_content"></RadioButton> | ||
<RadioButton android:text="Post" android:id="@+id/rbTranslateTypePost" android:layout_width="wrap_content" android:layout_height="wrap_content"></RadioButton> | ||
</RadioGroup> | ||
<TextView android:layout_width="wrap_content" android:id="@+id/textView2" android:layout_height="wrap_content" android:text="dX" android:textAppearance="?android:attr/textAppearanceLarge"></TextView> | ||
<EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/editDX" android:inputType="numberSigned"> | ||
<requestFocus></requestFocus> | ||
</EditText> | ||
<TextView android:layout_width="wrap_content" android:id="@+id/textView3" android:layout_height="wrap_content" android:text="dY" android:textAppearance="?android:attr/textAppearanceLarge"></TextView> | ||
<EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/editDY" android:inputType="numberSigned"></EditText> | ||
|
||
</LinearLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<LinearLayout | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:orientation="vertical" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent"> | ||
<CheckBox android:text="Draw rectangle" android:textAppearance="?android:attr/textAppearanceLarge" android:id="@+id/checkBoxInXMLDrawRectangle" android:layout_width="wrap_content" android:layout_height="wrap_content"></CheckBox> | ||
<CheckBox android:text="Draw line" android:textAppearance="?android:attr/textAppearanceLarge" android:id="@+id/checkBoxInXMLDrawLine" android:layout_width="wrap_content" android:layout_height="wrap_content"></CheckBox> | ||
<CheckBox android:text="Draw oval" android:textAppearance="?android:attr/textAppearanceLarge" android:id="@+id/checkBoxInXMLDrawOval" android:layout_width="wrap_content" android:layout_height="wrap_content"></CheckBox> | ||
<CheckBox android:text="Draw ring" android:textAppearance="?android:attr/textAppearanceLarge" android:id="@+id/checkBoxInXMLDrawRing" android:layout_width="wrap_content" android:layout_height="wrap_content"></CheckBox> | ||
<CheckBox android:text="Set bounds" android:textAppearance="?android:attr/textAppearanceLarge" android:id="@+id/checkBoxInXMLSetBounds" android:layout_width="wrap_content" android:layout_height="wrap_content"></CheckBox> | ||
<CheckBox android:text="As ShapeDrawable" android:textAppearance="?android:attr/textAppearanceLarge" android:id="@+id/checkBoxInXMLAsShapeDrawable" android:layout_width="wrap_content" android:layout_height="wrap_content"></CheckBox> | ||
<CheckBox android:text="As GradientDrawable" android:textAppearance="?android:attr/textAppearanceLarge" android:id="@+id/checkBoxInXMLAsGradientDrawable" android:layout_width="wrap_content" android:layout_height="wrap_content"></CheckBox> | ||
</LinearLayout> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<menu | ||
xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item android:id="@+id/mnu_genericconfig" | ||
android:title="@string/config"/> | ||
</menu> |
Oops, something went wrong.