47 lines
1.8 KiB
XML
47 lines
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?><!--
|
|
~ Copyright (c) 2022 NetEase, Inc. All rights reserved.
|
|
~ Use of this source code is governed by a MIT license that can be
|
|
~ found in the LICENSE file.
|
|
-->
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<com.netease.yunxin.kit.contactkit.ui.view.ContactLayout
|
|
android:id="@+id/contact_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginLeft="@dimen/dimen_15_dp"
|
|
android:layout_marginTop="@dimen/dimen_15_dp"
|
|
android:orientation="vertical" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/empty_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dimen_188_dp"
|
|
android:orientation="vertical"
|
|
android:visibility="gone"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
<ImageView
|
|
android:layout_width="@dimen/dimen_118_dp"
|
|
android:layout_height="@dimen/dimen_96_dp"
|
|
android:layout_gravity="center_horizontal"
|
|
android:src="@drawable/fun_ic_contact_empty" />
|
|
|
|
<TextView
|
|
android:id="@+id/empty_tv"
|
|
android:layout_width="@dimen/dimen_118_dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:gravity="center"
|
|
android:text="@string/selector_friend_empty" />
|
|
|
|
</LinearLayout>
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |