3 changed files with 82 additions and 48 deletions
@ -1,68 +1,100 @@
@@ -1,68 +1,100 @@
|
||||
<?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="#4DD5D1D1" |
||||
tools:context=".ui.setting.icon.IconFragment"> |
||||
|
||||
<LinearLayout |
||||
<androidx.appcompat.widget.AppCompatEditText |
||||
android:id="@+id/icons_search" |
||||
android:layout_width="match_parent" |
||||
android:layout_height="50dp" |
||||
android:layout_marginLeft="15dp" |
||||
android:layout_marginTop="30dp" |
||||
android:layout_marginRight="15dp" |
||||
android:background="@drawable/bg_miui10" |
||||
app:layout_constraintStart_toStartOf="parent" |
||||
app:layout_constraintTop_toTopOf="parent" /> |
||||
|
||||
<TextView |
||||
android:id="@+id/icons_group_FontAwesome" |
||||
android:layout_width="match_parent" |
||||
android:layout_height="wrap_content" |
||||
android:layout_marginStart="10dp" |
||||
android:layout_marginTop="10dp" |
||||
app:layout_constraintTop_toBottomOf="@id/icons_search" |
||||
android:text="@string/icon_name_FontAwesome" |
||||
android:textAlignment="inherit" |
||||
android:textColor="#CE21D873" |
||||
android:textSize="30dp" /> |
||||
|
||||
<RelativeLayout |
||||
android:id="@+id/icons_group_container_FontAwesome" |
||||
android:layout_width="match_parent" |
||||
android:layout_height="wrap_content" |
||||
android:orientation="vertical" |
||||
tools:ignore="MissingConstraints"> |
||||
app:layout_constraintTop_toBottomOf="@id/icons_group_FontAwesome" |
||||
> |
||||
|
||||
<TextView |
||||
android:layout_width="match_parent" |
||||
android:id="@+id/fontAwesome_placeholder" |
||||
android:layout_width="0dp" |
||||
android:layout_height="0dp" |
||||
android:layout_centerHorizontal="true"/> |
||||
|
||||
<RelativeLayout |
||||
android:id="@+id/icons_group_rl_left" |
||||
android:layout_width="0dp" |
||||
android:layout_height="wrap_content" |
||||
android:text="@string/s_set_project" /> |
||||
android:layout_alignParentLeft="true" |
||||
android:layout_toLeftOf="@id/fontAwesome_placeholder" |
||||
android:gravity="center" |
||||
> |
||||
|
||||
<ImageView |
||||
android:id="@+id/icons_group_faw_laugh" |
||||
android:layout_width="50dp" |
||||
android:layout_height="50dp" |
||||
app:ico_color="@color/black" |
||||
app:ico_icon="faw_laugh" /> |
||||
|
||||
<TextView |
||||
android:layout_width="match_parent" |
||||
android:layout_height="wrap_content" |
||||
android:text="@string/s_set_project" /> |
||||
<TextView |
||||
android:layout_width="match_parent" |
||||
android:layout_height="wrap_content" |
||||
android:text="@string/s_set_project" /> |
||||
<TextView |
||||
android:layout_width="match_parent" |
||||
android:layout_height="wrap_content" |
||||
android:text="@string/s_set_project" /> |
||||
<TextView |
||||
android:layout_width="match_parent" |
||||
android:layout_height="wrap_content" |
||||
android:text="@string/s_set_project" /> |
||||
<TextView |
||||
android:layout_width="match_parent" |
||||
android:layout_height="wrap_content" |
||||
android:text="@string/s_set_project" /> |
||||
<TextView |
||||
android:layout_width="match_parent" |
||||
android:layout_height="wrap_content" |
||||
android:text="@string/s_set_project" /> |
||||
<TextView |
||||
android:layout_width="match_parent" |
||||
android:layout_height="wrap_content" |
||||
android:text="@string/s_set_project" /> |
||||
<TextView |
||||
android:layout_width="match_parent" |
||||
android:layout_height="wrap_content" |
||||
android:text="@string/s_set_project" /> |
||||
<TextView |
||||
android:layout_width="match_parent" |
||||
android:layout_height="wrap_content" |
||||
android:text="@string/s_set_project" /> |
||||
<TextView |
||||
android:layout_width="match_parent" |
||||
android:layout_height="wrap_content" |
||||
android:text="@string/s_set_project" /> |
||||
<TextView |
||||
android:layout_width="match_parent" |
||||
<TextView |
||||
android:layout_width="wrap_content" |
||||
android:layout_height="wrap_content" |
||||
android:layout_below="@id/icons_group_faw_laugh" |
||||
android:gravity="center_vertical" |
||||
android:text="faw_laugh" /> |
||||
|
||||
</RelativeLayout> |
||||
|
||||
<RelativeLayout |
||||
android:id="@+id/icons_group_rl_right" |
||||
android:layout_width="0dp" |
||||
android:layout_height="wrap_content" |
||||
android:text="@string/s_set_project" /> |
||||
android:layout_alignParentRight="true" |
||||
android:layout_toRightOf="@id/fontAwesome_placeholder" |
||||
android:gravity="center" |
||||
> |
||||
|
||||
<ImageView |
||||
android:id="@+id/icons_group_cmd_cards_variant" |
||||
android:layout_width="50dp" |
||||
android:layout_height="50dp" |
||||
app:ico_color="@color/black" |
||||
app:ico_icon="cmd_cards_variant" /> |
||||
|
||||
<TextView |
||||
android:layout_width="wrap_content" |
||||
android:layout_height="wrap_content" |
||||
android:layout_below="@id/icons_group_cmd_cards_variant" |
||||
android:gravity="center_vertical" |
||||
android:text="cmd_cards_variant" /> |
||||
|
||||
</RelativeLayout> |
||||
|
||||
</LinearLayout> |
||||
</RelativeLayout> |
||||
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout> |
Loading…
Reference in new issue