-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
UI connection with application for updating userprofile, and getting …
…all group of user. Changing setting page: removing night mode, implementing about us btn and feedback btn
- Loading branch information
Showing
9 changed files
with
334 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 52 additions & 0 deletions
52
Android_App/joiintheclub/app/src/main/res/layout/activity_about_us.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<android.support.constraint.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" | ||
android:layout_width="300dp" | ||
android:layout_gravity="center" | ||
tools:context=".FrontEnd.Setting.SettingMain" | ||
android:layout_height="400dp" | ||
android:background="@color/gray"> | ||
|
||
<ImageButton | ||
android:id="@+id/Feedback_close_icon" | ||
android:layout_width="30dp" | ||
android:layout_height="30dp" | ||
android:clickable="true" | ||
android:layout_marginTop="1dp" | ||
android:layout_marginEnd="1dp" | ||
android:layout_marginRight="1dp" | ||
android:background="@drawable/close_icon" | ||
app:layout_constraintEnd_toEndOf="parent" | ||
app:layout_constraintTop_toTopOf="parent" | ||
android:contentDescription="@string/close_icon" | ||
android:focusable="true" /> | ||
|
||
<TextView | ||
android:id="@+id/aboutContent" | ||
android:layout_width="match_parent" | ||
android:layout_height="221dp" | ||
android:layout_marginStart="8dp" | ||
android:layout_marginLeft="8dp" | ||
android:layout_marginTop="8dp" | ||
android:layout_marginEnd="8dp" | ||
android:layout_marginRight="8dp" | ||
android:layout_marginBottom="8dp" | ||
android:gravity="center" | ||
android:text="Stephen Styffe | ||
Zachary Chester | ||
Wesly Shiozaki | ||
Hannah Kim | ||
Jiahui Jiang" | ||
app:layout_constraintBottom_toBottomOf="parent" | ||
app:layout_constraintEnd_toEndOf="parent" | ||
app:layout_constraintStart_toStartOf="parent" | ||
app:layout_constraintTop_toTopOf="parent" /> | ||
|
||
|
||
</android.support.constraint.ConstraintLayout> |
Oops, something went wrong.