Commit 50c8b106 authored by zhang_z's avatar zhang_z

界面bug;

parent 662b2f76
...@@ -63,7 +63,6 @@ public class SettleFragment extends BaseFragment<SettlePresenter, FragmentSettle ...@@ -63,7 +63,6 @@ public class SettleFragment extends BaseFragment<SettlePresenter, FragmentSettle
BottomSheetBehavior.from(mViewBinding.llSheet).setBottomSheetCallback(new BottomSheetBehavior.BottomSheetCallback() { BottomSheetBehavior.from(mViewBinding.llSheet).setBottomSheetCallback(new BottomSheetBehavior.BottomSheetCallback() {
@Override @Override
public void onStateChanged(@NonNull View bottomSheet, int newState) { public void onStateChanged(@NonNull View bottomSheet, int newState) {
} }
@Override @Override
......
...@@ -2,9 +2,10 @@ ...@@ -2,9 +2,10 @@
<layout xmlns:android="http://schemas.android.com/apk/res/android" <layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"> xmlns:app="http://schemas.android.com/apk/res-auto">
<android.support.constraint.ConstraintLayout <LinearLayout
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:orientation="horizontal"
android:paddingEnd="@dimen/all_margin" android:paddingEnd="@dimen/all_margin"
android:paddingStart="@dimen/all_margin" android:paddingStart="@dimen/all_margin"
android:paddingTop="@dimen/all_margin"> android:paddingTop="@dimen/all_margin">
...@@ -21,32 +22,31 @@ ...@@ -21,32 +22,31 @@
android:text="@string/ms_type_dis" android:text="@string/ms_type_dis"
android:textColor="@color/white_caocao" /> android:textColor="@color/white_caocao" />
<TextView <LinearLayout
android:id="@+id/tv_description" android:layout_width="match_parent"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/all_margin"
android:gravity="center_vertical"
android:textColor="@color/black_baozheng"
android:textSize="@dimen/all_body_size"
app:layout_constraintLeft_toRightOf="@id/tv_type"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="@id/tv_type" />
<TextView
android:id="@+id/tv_info"
android:layout_width="0dp"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/all_spacing" android:layout_marginBottom="@dimen/all_spacing"
android:layout_marginTop="@dimen/all_spacing" android:layout_marginStart="@dimen/all_margin"
android:textColor="@color/black_likui" android:orientation="vertical">
android:textSize="@dimen/all_caption_size"
app:layout_constraintBottom_toBottomOf="parent" <TextView
app:layout_constraintLeft_toLeftOf="@id/tv_description" android:id="@+id/tv_description"
app:layout_constraintRight_toRightOf="@id/tv_description" android:layout_width="match_parent"
app:layout_constraintTop_toBottomOf="@id/tv_description" /> android:layout_height="wrap_content"
android:textColor="@color/black_baozheng"
</android.support.constraint.ConstraintLayout> android:textSize="@dimen/all_body_size" />
<TextView
android:id="@+id/tv_info"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/all_spacing"
android:textColor="@color/black_likui"
android:textSize="@dimen/all_caption_size" />
</LinearLayout>
</LinearLayout>
</layout> </layout>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment