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

fragment_edit_description.xml « layout « res « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5264b4bc08efb77c4467fdbc19bb078ec94e4934 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent">
  <androidx.appcompat.widget.Toolbar
    android:id="@+id/toolbar"
    style="@style/MwmWidget.ToolbarStyle"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    android:theme="@style/MwmWidget.ToolbarTheme">
    <TextView
      android:id="@+id/tv__save"
      android:layout_width="wrap_content"
      android:layout_height="match_parent"
      android:layout_gravity="right"
      android:background="?attr/selectableItemBackgroundBorderless"
      android:clickable="true"
      android:gravity="center_vertical"
      android:padding="@dimen/margin_half"
      android:text="@string/save"
      android:textAppearance="@style/MwmTextAppearance.Toolbar.Title.Button"/>
  </androidx.appcompat.widget.Toolbar>

  <FrameLayout
    style="@style/MwmWidget.FrameLayout.Elevation"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_below="@id/toolbar"
    android:paddingLeft="@dimen/margin_base"
    android:paddingRight="@dimen/margin_base">
    <EditText
      android:id="@+id/et__description"
      style="@style/MwmWidget.PlacePage.EditText"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:hint="@string/edit_description_hint"
      android:includeFontPadding="false"
      android:inputType="textMultiLine"/>
  </FrameLayout>
</RelativeLayout>