Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fragment_timetable_picker.xml « layout « res « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: df2e1922ec7ad049f6ca9ef9f7663bb433bcae77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical">

  <android.support.design.widget.TabLayout
    android:id="@+id/tabs"
    android:layout_width="match_parent"
    android:layout_height="@dimen/height_block_base"
    android:elevation="@dimen/appbar_elevation"
    android:background="?android:windowBackground"
    app:tabGravity="fill"
    app:tabIndicatorColor="?colorAccent"
    app:tabMode="fixed"
    tools:ignore="UnusedAttribute"/>

  <TimePicker
    android:id="@+id/picker"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="?android:windowBackground"/>
</LinearLayout>