diff options
author | 2020-04-16 17:58:33 -0700 | |
---|---|---|
committer | 2020-04-16 21:05:12 -0700 | |
commit | 83a9d7635b4e9d2d5997932f42b0fb045410adbd (patch) | |
tree | 6f532b0cfe3adbd0dc63119dc6d0b5b6d41945eb /res/layout | |
parent | ef2aba6bd56dca17da923d576a5b34ce80336ffa (diff) |
Breadcrumb arrow for rtl Language
Test: atest DocumentsUIGoogleTests
Bug: 153891453
Change-Id: I46dc9ad427b40a8df944fcc352eb11d41c825c96
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/item_subdir.xml | 38 | ||||
-rw-r--r-- | res/layout/item_subdir_title.xml | 35 |
2 files changed, 0 insertions, 73 deletions
diff --git a/res/layout/item_subdir.xml b/res/layout/item_subdir.xml deleted file mode 100644 index c00b14bf4..000000000 --- a/res/layout/item_subdir.xml +++ /dev/null @@ -1,38 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Copyright (C) 2013 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. ---> - -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:minHeight="?android:attr/listPreferredItemHeightSmall" - android:paddingStart="?android:attr/listPreferredItemPaddingStart" - android:paddingEnd="?android:attr/listPreferredItemPaddingEnd" - android:gravity="center_vertical" - android:orientation="horizontal" - android:baselineAligned="false"> - - <TextView - android:id="@android:id/title" - android:layout_width="0dp" - android:layout_height="wrap_content" - android:layout_weight="1" - android:singleLine="true" - android:ellipsize="end" - android:textAlignment="viewStart" - android:textAppearance="?android:attr/textAppearanceListItem" - android:textColor="?android:attr/textColorPrimary" /> - -</LinearLayout> diff --git a/res/layout/item_subdir_title.xml b/res/layout/item_subdir_title.xml deleted file mode 100644 index 6d71fcae0..000000000 --- a/res/layout/item_subdir_title.xml +++ /dev/null @@ -1,35 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Copyright (C) 2013 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. ---> - -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:paddingEnd="8dp" - android:orientation="horizontal" - android:baselineAligned="false"> - - <TextView - android:id="@android:id/title" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:singleLine="true" - android:ellipsize="end" - android:textAlignment="viewStart" - android:drawablePadding="12dp" - android:drawableRight="@drawable/ic_breadcrumb_arrow_down" - android:textAppearance="@android:style/TextAppearance.DeviceDefault.Widget.ActionBar.Title" - android:gravity="center_vertical"/> -</LinearLayout> |