mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-20 11:18:21 +00:00
- Adding filtering and using alphabetic index for app grouping. Change-Id: I745b644fa8f90f5ff24a8642ac377ef1c65d8aff
33 lines
1.4 KiB
XML
33 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2015 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="@dimen/apps_view_row_height"
|
|
android:orientation="horizontal"
|
|
android:focusable="true"
|
|
android:background="@drawable/focusable_view_bg"
|
|
android:descendantFocusability="afterDescendants">
|
|
<TextView
|
|
android:id="@+id/section"
|
|
android:layout_width="64dp"
|
|
android:layout_height="match_parent"
|
|
android:paddingLeft="16dp"
|
|
android:gravity="start|center_vertical"
|
|
android:textColor="@color/apps_view_section_text_color"
|
|
android:textSize="@dimen/apps_view_section_text_size"
|
|
android:focusable="false" />
|
|
</LinearLayout> |