.
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:color="#4DFFFFFF"> <item android:id="@android:id/mask">
|
||||
<shape android:shape="rectangle">
|
||||
<solid android:color="#FFFFFF" />
|
||||
<corners
|
||||
android:topLeftRadius="8dp"
|
||||
android:topRightRadius="32dp"
|
||||
android:bottomLeftRadius="32dp"
|
||||
android:bottomRightRadius="8dp" />
|
||||
</shape>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<shape android:shape="rectangle">
|
||||
<solid android:color="#26FFFFFF" />
|
||||
|
||||
<stroke
|
||||
android:width="1dp"
|
||||
android:color="#1AFFFFFF" />
|
||||
|
||||
<corners
|
||||
android:topLeftRadius="8dp"
|
||||
android:topRightRadius="32dp"
|
||||
android:bottomLeftRadius="32dp"
|
||||
android:bottomRightRadius="8dp" />
|
||||
</shape>
|
||||
</item>
|
||||
</ripple>
|
||||
@@ -85,106 +85,67 @@
|
||||
android:text="0 Apps"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintRight_toRightOf="parent"/>
|
||||
<TextView
|
||||
android:id="@+id/title_recommend"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="10dp"
|
||||
android:paddingLeft="15dp"
|
||||
android:paddingRight="15dp"
|
||||
android:text="앱 목록"
|
||||
android:textColor="@color/white"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintLeft_toLeftOf="parent"/>
|
||||
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/recAppsList"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:minHeight="50dp"
|
||||
android:background="@android:color/transparent"
|
||||
android:background="@drawable/bg_grid_item"
|
||||
android:overScrollMode="never"
|
||||
android:layout_margin="10dp"
|
||||
android:padding="16dp"
|
||||
android:nestedScrollingEnabled="false"
|
||||
app:layout_constraintTop_toBottomOf="@id/title_recommend"/>
|
||||
app:layout_constraintTop_toTopOf="parent"/>
|
||||
|
||||
|
||||
<TextView
|
||||
android:id="@+id/title_apps"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="10dp"
|
||||
android:paddingLeft="15dp"
|
||||
android:paddingRight="15dp"
|
||||
android:text="앱 목록"
|
||||
android:textColor="@color/white"
|
||||
app:layout_constraintTop_toBottomOf="@+id/recAppsList"
|
||||
app:layout_constraintLeft_toLeftOf="parent"/>
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/appsList"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:minHeight="100dp"
|
||||
android:background="@android:color/transparent"
|
||||
android:layout_margin="10dp"
|
||||
android:padding="16dp"
|
||||
android:background="@drawable/bg_grid_item"
|
||||
android:overScrollMode="never"
|
||||
android:nestedScrollingEnabled="false"
|
||||
app:layout_constraintTop_toBottomOf="@id/title_apps"/>
|
||||
app:layout_constraintTop_toBottomOf="@id/recAppsList"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/title_webs"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="20dp"
|
||||
android:paddingLeft="15dp"
|
||||
android:paddingRight="15dp"
|
||||
android:text="빠른 검색"
|
||||
android:textColor="@color/white"
|
||||
app:layout_constraintTop_toBottomOf="@id/appsList"
|
||||
app:layout_constraintLeft_toLeftOf="parent"/>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/quickSearch"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal"
|
||||
android:padding="10dp"
|
||||
android:gravity="center_vertical"
|
||||
app:layout_constraintTop_toBottomOf="@id/title_webs">
|
||||
|
||||
<bums.lunatic.launcher.view.CircleImageView
|
||||
android:id="@+id/search_nmap"
|
||||
style="@style/SearchIcons"
|
||||
android:src="@drawable/navermap"/>
|
||||
<bums.lunatic.launcher.view.CircleImageView
|
||||
android:id="@+id/search_naver"
|
||||
style="@style/SearchIcons"
|
||||
android:src="@drawable/naver"/>
|
||||
<bums.lunatic.launcher.view.CircleImageView
|
||||
android:id="@+id/search_youtube"
|
||||
style="@style/SearchIcons"
|
||||
android:src="@drawable/youtube"/>
|
||||
</LinearLayout>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/title_contact"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="20dp"
|
||||
android:paddingLeft="15dp"
|
||||
android:paddingRight="15dp"
|
||||
android:textColor="@color/white"
|
||||
android:text="연락처"
|
||||
app:layout_constraintTop_toBottomOf="@id/quickSearch"
|
||||
app:layout_constraintLeft_toLeftOf="parent"/>
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/contactList"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:minHeight="90dp"
|
||||
android:background="@drawable/bg_grid_item"
|
||||
android:layout_margin="10dp"
|
||||
android:padding="16dp"
|
||||
android:nestedScrollingEnabled="false"
|
||||
app:layout_constraintTop_toBottomOf="@id/title_contact"/>
|
||||
app:layout_constraintTop_toBottomOf="@id/appsList"/>
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.core.widget.NestedScrollView>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/quickSearch"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal"
|
||||
android:background="@drawable/bg_grid_item"
|
||||
android:gravity="center_vertical"
|
||||
app:layout_constraintBottom_toBottomOf="parent">
|
||||
|
||||
<bums.lunatic.launcher.view.CircleImageView
|
||||
android:id="@+id/search_nmap"
|
||||
style="@style/SearchIcons"
|
||||
android:src="@drawable/navermap"/>
|
||||
<bums.lunatic.launcher.view.CircleImageView
|
||||
android:id="@+id/search_naver"
|
||||
style="@style/SearchIcons"
|
||||
android:src="@drawable/naver"/>
|
||||
<bums.lunatic.launcher.view.CircleImageView
|
||||
android:id="@+id/search_youtube"
|
||||
style="@style/SearchIcons"
|
||||
android:src="@drawable/youtube"/>
|
||||
</LinearLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
Reference in New Issue
Block a user