You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
3.6 KiB
81 lines
3.6 KiB
<?xml version="1.0" encoding="utf-8"?> |
|
<androidx.constraintlayout.widget.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="match_parent" |
|
android:layout_height="match_parent" |
|
android:background="@color/gray_light" |
|
tools:context=".ui.setting.SettingFragment"> |
|
|
|
<LinearLayout |
|
android:layout_width="match_parent" |
|
android:layout_height="match_parent" |
|
android:orientation="vertical" |
|
> |
|
|
|
<TextView |
|
android:layout_width="match_parent" |
|
android:layout_height="wrap_content" |
|
android:layout_marginStart="10dp" |
|
android:layout_marginTop="10dp" |
|
android:text="@string/s_set_app" |
|
android:textAlignment="inherit" |
|
android:textColor="#CE21D873" |
|
android:textSize="30dp" /> |
|
|
|
<LinearLayout |
|
android:id="@+id/s_set_app_icon" |
|
android:layout_width="match_parent" |
|
android:layout_height="@dimen/s_set_linear_layout_height" |
|
android:layout_marginTop="@dimen/s_set_linear_layout_marginTop" |
|
android:layout_marginLeft="@dimen/s_set_linear_layout_marginLeft" |
|
android:layout_marginRight="@dimen/s_set_linear_layout_marginRight" |
|
android:layout_gravity="center_vertical" |
|
android:background="@drawable/round_text_view_15dp" |
|
> |
|
|
|
<ImageView |
|
android:layout_width="@dimen/s_set_linear_image_view_size" |
|
android:layout_height="@dimen/s_set_linear_image_view_size" |
|
android:layout_marginLeft="@dimen/s_set_linear_image_view_marginLeft" |
|
android:layout_marginTop="@dimen/s_set_linear_image_view_marginTop" |
|
app:ico_color="@color/gray" |
|
app:ico_icon="faw_laugh" /> |
|
<TextView |
|
android:layout_width="match_parent" |
|
android:layout_height="match_parent" |
|
android:layout_marginLeft="@dimen/s_set_linear_text_view_marginLeft" |
|
android:gravity="left|center" |
|
android:text="@string/s_set_icon" |
|
android:textSize="20dp" /> |
|
</LinearLayout> |
|
|
|
<LinearLayout |
|
android:id="@+id/s_set_app_project" |
|
android:layout_width="match_parent" |
|
android:layout_height="@dimen/s_set_linear_layout_height" |
|
android:layout_marginTop="@dimen/s_set_linear_layout_marginTop" |
|
android:layout_marginLeft="@dimen/s_set_linear_layout_marginLeft" |
|
android:layout_marginRight="@dimen/s_set_linear_layout_marginRight" |
|
android:background="@drawable/round_text_view_15dp" |
|
> |
|
|
|
<ImageView |
|
android:layout_width="@dimen/s_set_linear_image_view_size" |
|
android:layout_height="@dimen/s_set_linear_image_view_size" |
|
android:layout_marginLeft="@dimen/s_set_linear_image_view_marginLeft" |
|
android:layout_marginTop="@dimen/s_set_linear_image_view_marginTop" |
|
app:ico_color="@color/gray" |
|
app:ico_icon="cmd_cards_variant" /> |
|
|
|
<TextView |
|
android:layout_width="match_parent" |
|
android:layout_height="match_parent" |
|
android:layout_marginLeft="@dimen/s_set_linear_text_view_marginLeft" |
|
android:gravity="left|center" |
|
android:text="@string/s_set_project" |
|
android:textSize="20dp" /> |
|
</LinearLayout> |
|
</LinearLayout> |
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |