Delete outdated numpad resources.

This commit is contained in:
Phillip Hsu 2017-02-26 18:54:24 -08:00
parent 8447efc315
commit 3d8e970294
5 changed files with 0 additions and 163 deletions

View File

@ -1,73 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (C) 2016 Phillip Hsu
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<merge xmlns:android="http://schemas.android.com/apk/res/android">
<!--
~ The children of a TableLayout cannot specify the layout_width attribute.
~ Width is always MATCH_PARENT. However, the layout_height attribute can be
~ defined by a child; default value is WRAP_CONTENT. If the child is a
~ TableRow, then the height is always WRAP_CONTENT.
-->
<TableRow>
<Button style="@style/NumberButton"
android:id="@+id/one"
android:text="@string/one"/>
<Button style="@style/NumberButton"
android:id="@+id/two"
android:text="@string/two"/>
<Button style="@style/NumberButton"
android:id="@+id/three"
android:text="@string/three"/>
</TableRow>
<TableRow>
<Button style="@style/NumberButton"
android:id="@+id/four"
android:text="@string/four"/>
<Button style="@style/NumberButton"
android:id="@+id/five"
android:text="@string/five"/>
<Button style="@style/NumberButton"
android:id="@+id/six"
android:text="@string/six"/>
</TableRow>
<TableRow>
<Button style="@style/NumberButton"
android:id="@+id/seven"
android:text="@string/seven"/>
<Button style="@style/NumberButton"
android:id="@+id/eight"
android:text="@string/eight"/>
<Button style="@style/NumberButton"
android:id="@+id/nine"
android:text="@string/nine"/>
</TableRow>
<TableRow>
<Space android:layout_weight="1"
android:layout_height="match_parent"/>
<Button style="@style/NumberButton"
android:id="@+id/zero"
android:text="@string/zero"/>
<Space android:layout_weight="1"
android:layout_height="match_parent"/>
</TableRow>
</merge>

View File

@ -1,18 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (C) 2016 Phillip Hsu
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<Button style="@style/NumberButton"/>

View File

@ -1,22 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (C) 2016 Phillip Hsu
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<ImageButton xmlns:android="http://schemas.android.com/apk/res/android"
style="@style/NumberButton"
android:src="@drawable/ic_backspace_24dp"
android:theme="@style/ThemeOverlay.AppCompat.Dark"
android:id="@+id/backspace"/>

View File

@ -1,20 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (C) 2016 Phillip Hsu
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<ImageButton xmlns:android="http://schemas.android.com/apk/res/android"
style="@style/NumberButton"
android:src="@drawable/ic_collapse_24dp"/>

View File

@ -1,30 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (C) 2016 Phillip Hsu
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
style="@style/NumberButton"
android:padding="0dp"
android:background="@android:color/transparent">
<android.support.design.widget.FloatingActionButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_done_24dp"
android:layout_gravity="center"
android:clickable="true"/>
</FrameLayout>