Inital commit
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<FrameLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/frame_layout"
|
||||
android:layout_width="@dimen/default_big_button_width"
|
||||
android:layout_height="@dimen/default_big_button_height"
|
||||
android:background="@drawable/big_button_background"
|
||||
android:clickable="true"
|
||||
>
|
||||
|
||||
<View
|
||||
android:id="@+id/click_effect"
|
||||
android:layout_width="@dimen/default_big_button_width"
|
||||
android:layout_height="@dimen/default_big_button_height"
|
||||
android:background="@drawable/big_button_effect"
|
||||
/>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="match_parent"
|
||||
android:orientation="vertical"
|
||||
android:layout_gravity="center"
|
||||
>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/text"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="match_parent"
|
||||
android:text="5"
|
||||
android:textSize="35sp"
|
||||
android:gravity="center_horizontal|bottom"
|
||||
/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/sub_text"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_marginTop="-8dp"
|
||||
android:text="ABC"
|
||||
android:gravity="center_horizontal|top"
|
||||
/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</FrameLayout>
|
||||
Reference in New Issue
Block a user