SendTransactionFragment to use the whole width of the device dinamycally

master
Severiano Jaramillo 2017-12-20 22:33:31 -06:00
parent 83a564d51d
commit bf86c14530
2 changed files with 12 additions and 6 deletions

View File

@ -165,6 +165,14 @@ public class SendTransactionFragment extends DialogFragment implements UIValidat
return dialog; return dialog;
} }
@Override
public void onResume() {
super.onResume();
// Force dialog fragment to use the full width of the screen
getDialog().getWindow().setLayout(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);
}
/*public View onCreateView(LayoutInflater inflater, ViewGroup container, /*public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState){ Bundle savedInstanceState){
View view = inflater.inflate(R.layout.send_transaction, container, false); View view = inflater.inflate(R.layout.send_transaction, container, false);

View File

@ -2,10 +2,8 @@
<android.support.constraint.ConstraintLayout <android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android" 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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content">
android:minWidth="350dp">
<View <View
android:id="@+id/topView" android:id="@+id/topView"
@ -81,7 +79,7 @@
android:layout_width="30dp" android:layout_width="30dp"
android:layout_height="30dp" android:layout_height="30dp"
android:layout_marginEnd="5dp" android:layout_marginEnd="5dp"
android:src="@drawable/ic_people" app:srcCompat="@drawable/ic_people"
android:layout_marginBottom="15dp" android:layout_marginBottom="15dp"
app:layout_constraintEnd_toEndOf="@id/etTo" app:layout_constraintEnd_toEndOf="@id/etTo"
app:layout_constraintBottom_toBottomOf="@id/etTo"/> app:layout_constraintBottom_toBottomOf="@id/etTo"/>
@ -203,7 +201,7 @@
android:layout_marginBottom="165dp" android:layout_marginBottom="165dp"
android:layout_marginStart="165dp" android:layout_marginStart="165dp"
app:backgroundTint="@color/send_strong_orange" app:backgroundTint="@color/send_strong_orange"
android:src="@drawable/ic_close" app:srcCompat="@drawable/ic_close"
app:layout_constraintBottom_toBottomOf="@+id/ivCamera" app:layout_constraintBottom_toBottomOf="@+id/ivCamera"
app:layout_constraintStart_toStartOf="@+id/ivCamera" /> app:layout_constraintStart_toStartOf="@+id/ivCamera" />
@ -222,7 +220,7 @@
android:layout_height="90dp" android:layout_height="90dp"
android:layout_marginTop="24dp" android:layout_marginTop="24dp"
app:backgroundTint="@color/send_strong_orange" app:backgroundTint="@color/send_strong_orange"
android:src="@drawable/ic_arrow_forward" app:srcCompat="@drawable/ic_arrow_forward"
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="@+id/viewSend" /> app:layout_constraintTop_toTopOf="@+id/viewSend" />