Files
VscoolOS/app/src/main/res/layout/activity_phone.xml
Fanhuitong a8fcca9fb9 version:1.0.6
update:
bugfixes:修改样式,删除无用类
2024-07-31 09:19:43 +08:00

116 lines
5.0 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<layout 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"
tools:context=".activity.phone.PhoneActivity">
<data>
<variable
name="click"
type="com.xxpatx.os.activity.phone.PhoneActivity.BtnClick" />
</data>
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.flyco.tablayout.SlidingTabLayout2
android:id="@+id/sliding_tab_layout"
android:layout_width="match_parent"
android:layout_height="48dp"
android:visibility="visible"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:tl_indicator_color="#FFFFFF"
app:tl_indicator_style="TRIANGLE"
app:tl_indicator_width_equal_title="true"
app:tl_selectTextSize="22sp"
app:tl_tab_space_equal="true"
app:tl_textBold="SELECT"
app:tl_textsize="20sp" />
<androidx.viewpager2.widget.ViewPager2
android:id="@+id/viewPager"
android:layout_width="match_parent"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@+id/sliding_tab_layout" />
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="match_parent"
android:layout_height="96dp"
android:background="@drawable/phone_navigation_backround"
android:orientation="horizontal"
android:visibility="gone"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1">
<com.shehuan.niv.NiceImageView
android:id="@+id/nv_contact"
android:layout_width="64dp"
android:layout_height="64dp"
android:adjustViewBounds="true"
android:onClick="@{click::toContact}"
android:scaleType="centerCrop"
android:src="@drawable/home_dialer_icon_contacts"
app:is_circle="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1">
<com.shehuan.niv.NiceImageView
android:id="@+id/nv_dialer"
android:layout_width="64dp"
android:layout_height="64dp"
android:adjustViewBounds="true"
android:onClick="@{click::call}"
android:scaleType="centerCrop"
android:src="@drawable/home_dialer_icon_circle"
app:is_circle="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1">
<com.shehuan.niv.NiceImageView
android:id="@+id/nv_records"
android:layout_width="64dp"
android:layout_height="64dp"
android:adjustViewBounds="true"
android:onClick="@{click::toRecord}"
android:scaleType="centerCrop"
android:src="@drawable/home_dialer_icon_records"
app:is_circle="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
</layout>