Skip to content
Snippets Groups Projects
Commit 0e0924b0 authored by zaydanA's avatar zaydanA
Browse files

fix style fragmentSettings

parent fa3ede5e
1 merge request!16fix style fragmentSettings
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
<com.github.mikephil.charting.charts.PieChart <com.github.mikephil.charting.charts.PieChart
android:id="@+id/pieChart" android:id="@+id/pieChart"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="600dp" /> android:layout_height="400dp"
/>
</RelativeLayout> </RelativeLayout>
...@@ -27,36 +27,32 @@ ...@@ -27,36 +27,32 @@
android:id="@+id/saveBtn" android:id="@+id/saveBtn"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="Save" android:text="@string/save"
app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintTop_toBottomOf="@id/sendEmailButton"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.498" app:layout_constraintHorizontal_bias="0.498"
app:layout_constraintStart_toStartOf="parent" app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent" app:layout_constraintRight_toRightOf="parent"
app:layout_constraintVertical_bias="0.221" /> app:layout_constraintVertical_bias="0.221" />
<Button <Button
android:id="@+id/twibbonButton" android:id="@+id/twibbonButton"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginTop="26dp" android:text="@string/twibbon"
android:text="Twibbon"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.498" app:layout_constraintHorizontal_bias="0.498"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/saveBtn" app:layout_constraintTop_toBottomOf="@+id/saveBtn"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintVertical_bias="0.024"/> app:layout_constraintVertical_bias="0.024"/>
<Button <Button
android:id="@+id/randomTransactionBtn" android:id="@+id/randomTransactionBtn"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="RandomizeTransaction" android:text="@string/randomizetransaction"
app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintTop_toBottomOf="@id/twibbonButton"
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintHorizontal_bias="0.497" app:layout_constraintHorizontal_bias="0.497"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.233" /> app:layout_constraintVertical_bias="0.233" />
</androidx.constraintlayout.widget.ConstraintLayout> </androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file
...@@ -12,4 +12,7 @@ ...@@ -12,4 +12,7 @@
<string name="title_scan">Scan</string> <string name="title_scan">Scan</string>
<string name="send_email">Send Email</string> <string name="send_email">Send Email</string>
<string name="submit">Submit</string> <string name="submit">Submit</string>
<string name="save">Save</string>
<string name="randomizetransaction">RandomizeTransaction</string>
<string name="twibbon">Twibbon</string>
</resources> </resources>
\ No newline at end of file
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