custom view

custom view
This commit is contained in:
hmkcode
2015-01-30 18:38:49 +03:00
parent 9f709aed2d
commit 6c8d212481
8 changed files with 214 additions and 0 deletions
@@ -0,0 +1,38 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:customviews="http://schemas.android.com/apk/res/com.hmkcode.views"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:orientation="vertical"
tools:context="com.hmkcode.views.MainActivity"
>
<com.hmkcode.views.SimpleView
android:id="@+id/simpleViewCircle"
android:layout_width="140dp"
android:layout_height="150dp"
customviews:shape="circle"
customviews:dim="70dp"
android:layout_gravity="center_horizontal"
/>
<com.hmkcode.views.SimpleView
android:id="@+id/simpleViewSquare"
android:layout_width="140dp"
android:layout_height="140dp"
customviews:shape="square"
customviews:dim="140dp"
android:layout_gravity="center_horizontal"
/>
<TextView
android:id="@+id/tv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
/>
</LinearLayout>
+9
View File
@@ -0,0 +1,9 @@
<resources>
<declare-styleable name="SimpleView">
<attr name="shape" format="enum">
<enum name="circle" value="0"/>
<enum name="square" value="1"/>
</attr>
<attr name="dim" format="dimension"/>
</declare-styleable>
</resources>
@@ -0,0 +1,7 @@
<resources>
<!-- Default screen margins, per the Android Design guidelines. -->
<dimen name="activity_horizontal_margin">16dp</dimen>
<dimen name="activity_vertical_margin">16dp</dimen>
</resources>
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Simple Custom View</string>
<string name="hello_world">Hello world!</string>
<string name="action_settings">Settings</string>
</resources>
+20
View File
@@ -0,0 +1,20 @@
<resources>
<!--
Base application theme, dependent on API level. This theme is replaced
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
-->
<style name="AppBaseTheme" parent="Theme.AppCompat.Light">
<!--
Theme customizations available in newer API levels can go in
res/values-vXX/styles.xml, while customizations related to
backward-compatibility can go here.
-->
</style>
<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
</style>
</resources>