Remove unused resources

pull/574/head
Alex Baker 7 years ago
parent 71f911076c
commit 559619eadd

@ -142,7 +142,7 @@ public class CustomRecurrenceDialog extends InjectingDialogFragment {
intervalEditText.setText(locale.formatNumber(rrule.getInterval()));
repeatUntilAdapter = new ArrayAdapter<String>(context, R.layout.simple_spinner_item, repeatUntilOptions) {
repeatUntilAdapter = new ArrayAdapter<String>(context, 0, repeatUntilOptions) {
@Override
public View getDropDownView(int position, @Nullable View convertView, @NonNull ViewGroup parent) {
ViewGroup vg = (ViewGroup) inflater.inflate(R.layout.simple_spinner_dropdown_item, parent, false);

@ -5,7 +5,6 @@
** See the file "LICENSE" for the full license governing this code.
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/reminder_root"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dip"

@ -5,7 +5,6 @@
** See the file "LICENSE" for the full license governing this code.
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/reminder_root"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dip"
@ -44,11 +43,9 @@
</LinearLayout>
<FrameLayout
android:id="@+id/calendar_reminder_speech_bubble"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<LinearLayout
android:id="@+id/speech_bubble_container"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
@ -59,7 +56,6 @@
android:layout_marginBottom="10dip"
android:gravity="bottom">
<ImageView
android:id="@+id/astridIcon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="5dip"
@ -68,7 +64,6 @@
<LinearLayout
android:id="@+id/speech_bubble_content"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginRight="5dip"

@ -51,7 +51,7 @@
android:cacheColorHint="#00000000"/>
<!-- help text -->
<TextView android:id="@+id/help"
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"

@ -1,30 +0,0 @@
<?xml version="1.0" encoding="utf-8"?><!--
/* //device/apps/common/assets/res/any/layout/simple_spinner_item.xml
**
** Copyright 2006, The Android Open Source Project
**
** 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.
*/
-->
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/text1"
style="?android:attr/spinnerItemStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ellipsize="marquee"
android:paddingEnd="10dp"
android:paddingLeft="0dp"
android:paddingRight="10dp"
android:paddingStart="0dp"
android:singleLine="true"
android:textAlignment="inherit" />

@ -27,7 +27,6 @@
android:tint="?attr/icon_tint" />
<TextView
android:id="@+id/empty_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"

@ -84,14 +84,6 @@
<color name="blue_grey_500">#607d8b</color>
<color name="blue_grey_700">#455a64</color>
<color name="led_red">#ff0000</color>
<color name="led_orange">#ff4500</color>
<color name="led_yellow">#ffff00</color>
<color name="led_green">#00ff00</color>
<color name="led_blue">#0000ff</color>
<color name="led_purple">#800080</color>
<color name="led_white">#ffffff</color>
<color name="black_87">#de000000</color>
<color name="black_54">#8a000000</color>
<color name="black_38">#61000000</color>

@ -16,8 +16,6 @@
<item name="android:windowIsTranslucent">true</item>
</style>
<style name="Toolbar" parent="@style/Widget.AppCompat.Toolbar" />
<style name="TextBoxText">
<item name="android:textColor">?attr/asTextColor</item>
</style>
@ -104,10 +102,6 @@
<item name="android:elevation" tools:ignore="NewApi">@dimen/elevation_refresh_indicator</item>
</style>
<style name="TextAppearance.Medium">
<item name="android:textSize">18sp</item>
</style>
<style name="priority_button_base">
<item name="android:layout_width">0dp</item>
<item name="android:layout_height">wrap_content</item>

Loading…
Cancel
Save