| | |
| | | <androidx.constraintlayout.widget.ConstraintLayout 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:ignore="MissingConstraints" |
| | | android:background="@color/white" |
| | | android:layout_width="match_parent" |
| | | android:layout_height="match_parent" |
| | |
| | | <com.runt.open.mvvm.widgets.TitleBarView |
| | | android:id="@+id/title_bar" |
| | | style="@style/titlebar" |
| | | tools:ignore="MissingConstraints" |
| | | app:titleText="设置" |
| | | app:leftDrawable="@mipmap/icon_white_back" |
| | | app:leftTint="@color/black"/> |
| | |
| | | <TextView |
| | | android:id="@+id/version" |
| | | app:layout_constraintTop_toBottomOf="@id/title_bar" |
| | | app:layout_constraintLeft_toLeftOf="parent" |
| | | app:layout_constraintRight_toRightOf="parent" |
| | | android:background="@drawable/bg_white" |
| | | android:layout_width="match_parent" |
| | | android:layout_height="wrap_content" |
| | | android:gravity="left" |
| | | android:text="@string/str_version" |
| | | android:textColor="@color/txt_color" |
| | | android:textSize="@dimen/title_size" |
| | | android:padding="15dp" /> |
| | | style="@style/lin_txt" /> |
| | | <TextView |
| | | android:id="@+id/about" |
| | | app:layout_constraintTop_toBottomOf="@id/version" |
| | | app:layout_constraintLeft_toLeftOf="parent" |
| | | app:layout_constraintRight_toRightOf="parent" |
| | | android:background="@drawable/bg_white" |
| | | android:layout_width="match_parent" |
| | | android:layout_height="wrap_content" |
| | | style="@style/lin_txt" |
| | | android:drawableRight="@mipmap/arrow_right" |
| | | android:gravity="left" |
| | | android:text="关于我们" |
| | | android:textColor="@color/txt_color" |
| | | android:textSize="@dimen/title_size" |
| | | android:padding="15dp" /> |
| | | android:text="关于我们" /> |
| | | <View |
| | | app:layout_constraintTop_toBottomOf="@id/title_bar" |
| | | android:layout_width="match_parent" |