Skip to content

Instantly share code, notes, and snippets.

@koifish082
Created May 9, 2018 16:35
Show Gist options
  • Save koifish082/ffd1937d4d7196df9249065202c99053 to your computer and use it in GitHub Desktop.
Save koifish082/ffd1937d4d7196df9249065202c99053 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".presentation.view.profile.MyProfileFragment">
<android.support.v7.widget.Toolbar
android:id="@+id/myProfileToolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white"
android:textColor="@color/black"
android:elevation="4dp"
android:minHeight="?attr/actionBarSize"
android:theme="?attr/actionBarTheme" />
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<synbee.ambie.co.jp.presentation.view.common.customView.RoundImageView
android:id="@+id/myProfileMainUserImageView"
android:layout_width="240dp"
android:layout_height="240dp"
android:layout_gravity="center_horizontal"
android:layout_marginTop="5dp"
android:src="@drawable/lgn_pt_bs"/>
<LinearLayout
android:id="@+id/myProfileUserImageThumbnailLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:layout_gravity="center_horizontal"
android:orientation="horizontal">
</LinearLayout>
<TextView
android:id="@+id/myProfileSelfIntroductionText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginEnd="10dp"
android:layout_marginStart="10dp"
android:background="@drawable/self_introduction_border"
android:paddingBottom="10dp"
android:paddingTop="10dp"
android:textColor="@color/black"
android:textSize="14sp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<Button
android:id="@+id/myProfileFavoriteBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@color/white"
android:text="@string/my_profile_tab_favorite" />
<Button
android:id="@+id/myProfileHistoryBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@color/white"
android:text="@string/my_profile_tab_synbee_history" />
</LinearLayout>
<FrameLayout
android:id="@+id/myProfileFavoriteHistoryFrame"
android:layout_width="match_parent"
android:layout_height="0dp"
android:background="@color/black"
android:layout_weight="1">
</FrameLayout>
</LinearLayout>
</ScrollView>
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment