mirror of
https://github.com/DrKLO/Telegram.git
synced 2024-12-22 14:35:03 +01:00
fixed previous commit
This commit is contained in:
parent
1321d9d6d6
commit
0aea8f1532
1 changed files with 122 additions and 0 deletions
122
TMessagesProj/src/main/res/layout/encrypted_chat_placeholder.xml
Normal file
122
TMessagesProj/src/main/res/layout/encrypted_chat_placeholder.xml
Normal file
|
@ -0,0 +1,122 @@
|
|||
<LinearLayout
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:padding="20dp"
|
||||
android:layout_centerInParent="true"
|
||||
android:id="@+id/secret_placeholder"
|
||||
android:orientation="vertical"
|
||||
android:visibility="gone"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<TextView android:layout_height="wrap_content"
|
||||
android:layout_width="wrap_content"
|
||||
android:id="@+id/invite_text"
|
||||
android:maxWidth="210dp"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:gravity="center_horizontal"
|
||||
android:textColor="#ffffff"
|
||||
android:textSize="15dp"/>
|
||||
|
||||
<TextView android:layout_height="wrap_content"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_marginTop="8dp"
|
||||
android:maxWidth="260dp"
|
||||
android:gravity="center_horizontal"
|
||||
android:textColor="#ffffff"
|
||||
android:textSize="15dp"
|
||||
android:id="@+id/secret_title"/>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="wrap_content"
|
||||
android:orientation="horizontal"
|
||||
android:layout_marginTop="8dp">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:src="@drawable/ic_lock_white"
|
||||
android:layout_marginRight="8dp"
|
||||
android:layout_marginTop="4dp"/>
|
||||
|
||||
<TextView android:layout_height="wrap_content"
|
||||
android:layout_width="wrap_content"
|
||||
android:maxWidth="260dp"
|
||||
android:gravity="center_vertical"
|
||||
android:textColor="#ffffff"
|
||||
android:textSize="15dp"
|
||||
android:id="@+id/secret_description1"/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="wrap_content"
|
||||
android:orientation="horizontal"
|
||||
android:layout_marginTop="8dp">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:src="@drawable/ic_lock_white"
|
||||
android:layout_marginRight="8dp"
|
||||
android:layout_marginTop="4dp"/>
|
||||
|
||||
<TextView android:layout_height="wrap_content"
|
||||
android:layout_width="wrap_content"
|
||||
android:maxWidth="260dp"
|
||||
android:gravity="center_vertical"
|
||||
android:textColor="#ffffff"
|
||||
android:textSize="15dp"
|
||||
android:id="@+id/secret_description2"/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="wrap_content"
|
||||
android:orientation="horizontal"
|
||||
android:layout_marginTop="8dp">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:src="@drawable/ic_lock_white"
|
||||
android:layout_marginRight="8dp"
|
||||
android:layout_marginTop="4dp"/>
|
||||
|
||||
<TextView android:layout_height="wrap_content"
|
||||
android:layout_width="wrap_content"
|
||||
android:maxWidth="260dp"
|
||||
android:gravity="center_vertical"
|
||||
android:textColor="#ffffff"
|
||||
android:textSize="15dp"
|
||||
android:id="@+id/secret_description3"/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="wrap_content"
|
||||
android:orientation="horizontal"
|
||||
android:layout_marginTop="8dp">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:src="@drawable/ic_lock_white"
|
||||
android:layout_marginRight="8dp"
|
||||
android:layout_marginTop="4dp"/>
|
||||
|
||||
<TextView android:layout_height="wrap_content"
|
||||
android:layout_width="wrap_content"
|
||||
android:maxWidth="260dp"
|
||||
android:gravity="center_vertical"
|
||||
android:textColor="#ffffff"
|
||||
android:textSize="15dp"
|
||||
android:id="@+id/secret_description4"/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
Loading…
Reference in a new issue