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

fragment_channel.xml « layout-sw600dp « res « main « src « app - gitlab.com/quite/mumla.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f19cc1247c3dd4cc4e248aa638a9fef6973e6d80 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<?xml version="1.0" encoding="utf-8"?>
<!--
  ~ Copyright (C) 2014 Andrew Comminos
  ~
  ~ This program is free software: you can redistribute it and/or modify
  ~ it under the terms of the GNU General Public License as published by
  ~ the Free Software Foundation, either version 3 of the License, or
  ~ (at your option) any later version.
  ~
  ~ This program is distributed in the hope that it will be useful,
  ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
  ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  ~ GNU General Public License for more details.
  ~
  ~ You should have received a copy of the GNU General Public License
  ~ along with this program.  If not, see <http://www.gnu.org/licenses/>.
  -->

<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:layout_marginLeft="16dp"
    android:layout_marginRight="16dp"
    android:divider="?attr/dividerHorizontal"
    android:orientation="horizontal"
    android:showDividers="middle">

    <LinearLayout
        android:id="@+id/left_split"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1" >

        <FrameLayout
            android:id="@+id/chat_fragment"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />
    </LinearLayout>

    <LinearLayout
        android:id="@+id/right_split"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:orientation="vertical" >

        <FrameLayout
            android:id="@+id/list_fragment"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1" />


        <FrameLayout
            android:id="@+id/target_panel"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <View
                android:layout_width="match_parent"
                android:layout_height="1dp"
                android:background="#dadada"
                android:layout_gravity="top"/>

            <TextView
                android:id="@+id/target_panel_warning"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:text="Shouting to Channel"
                android:textSize="6pt"
                android:textColor="?android:textColorPrimary"
                android:singleLine="true"
                android:gravity="left|center_vertical"
                android:textStyle="italic"
                android:padding="8dp"/>

            <ImageView
                android:id="@+id/target_panel_cancel"
                android:layout_width="24dp"
                android:layout_height="match_parent"
                app:srcCompat="@drawable/ic_action_delete_dark"
                android:tint="?android:textColorPrimary"
                android:layout_gravity="center_vertical|end"
                android:background="?attr/selectableItemBackgroundBorderless"/>

        </FrameLayout>

        <LinearLayout
            android:id="@+id/pushtotalk_view"
            android:layout_width="match_parent"
            android:layout_height="51dp"
            android:gravity="center_horizontal"
            android:orientation="vertical" >


            <View
                android:layout_width="match_parent"
                android:layout_height="1dp"
                android:background="#dadada" />

            <Button
                android:id="@+id/pushtotalk"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:text="@string/ptt"
                android:textSize="12sp"
                android:textColor="#858585"
                android:textStyle="bold"
                android:background="?attr/selectableItemBackground"/>
        </LinearLayout>
    </LinearLayout>

</LinearLayout>