res/values/attrs.xml
author Da Risk <da_risk@beem-project.com>
Sun, 22 Apr 2012 20:39:31 +0200
changeset 994 7483a66399de
permissions -rw-r--r--
Add a custom TextView widget to display groups in form of tabs.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
994
7483a66399de Add a custom TextView widget to display groups in form of tabs.
Da Risk <da_risk@beem-project.com>
parents:
diff changeset
     1
<?xml version="1.0" encoding="utf-8"?>
7483a66399de Add a custom TextView widget to display groups in form of tabs.
Da Risk <da_risk@beem-project.com>
parents:
diff changeset
     2
<!--
7483a66399de Add a custom TextView widget to display groups in form of tabs.
Da Risk <da_risk@beem-project.com>
parents:
diff changeset
     3
    BEEM is a videoconference application on the Android Platform.
7483a66399de Add a custom TextView widget to display groups in form of tabs.
Da Risk <da_risk@beem-project.com>
parents:
diff changeset
     4
7483a66399de Add a custom TextView widget to display groups in form of tabs.
Da Risk <da_risk@beem-project.com>
parents:
diff changeset
     5
    Copyright (C) 2009-2011 by Frederic-Charles Barthelery,
7483a66399de Add a custom TextView widget to display groups in form of tabs.
Da Risk <da_risk@beem-project.com>
parents:
diff changeset
     6
                               Nikita Kozlov,
7483a66399de Add a custom TextView widget to display groups in form of tabs.
Da Risk <da_risk@beem-project.com>
parents:
diff changeset
     7
                               Vincent Veronis.
7483a66399de Add a custom TextView widget to display groups in form of tabs.
Da Risk <da_risk@beem-project.com>
parents:
diff changeset
     8
7483a66399de Add a custom TextView widget to display groups in form of tabs.
Da Risk <da_risk@beem-project.com>
parents:
diff changeset
     9
    This file is part of BEEM.
7483a66399de Add a custom TextView widget to display groups in form of tabs.
Da Risk <da_risk@beem-project.com>
parents:
diff changeset
    10
7483a66399de Add a custom TextView widget to display groups in form of tabs.
Da Risk <da_risk@beem-project.com>
parents:
diff changeset
    11
    BEEM is free software: you can redistribute it and/or modify
7483a66399de Add a custom TextView widget to display groups in form of tabs.
Da Risk <da_risk@beem-project.com>
parents:
diff changeset
    12
    it under the terms of the GNU General Public License as published by
7483a66399de Add a custom TextView widget to display groups in form of tabs.
Da Risk <da_risk@beem-project.com>
parents:
diff changeset
    13
    the Free Software Foundation, either version 3 of the License, or
7483a66399de Add a custom TextView widget to display groups in form of tabs.
Da Risk <da_risk@beem-project.com>
parents:
diff changeset
    14
    (at your option) any later version.
7483a66399de Add a custom TextView widget to display groups in form of tabs.
Da Risk <da_risk@beem-project.com>
parents:
diff changeset
    15
7483a66399de Add a custom TextView widget to display groups in form of tabs.
Da Risk <da_risk@beem-project.com>
parents:
diff changeset
    16
    BEEM is distributed in the hope that it will be useful,
7483a66399de Add a custom TextView widget to display groups in form of tabs.
Da Risk <da_risk@beem-project.com>
parents:
diff changeset
    17
    but WITHOUT ANY WARRANTY; without even the implied warranty of
7483a66399de Add a custom TextView widget to display groups in form of tabs.
Da Risk <da_risk@beem-project.com>
parents:
diff changeset
    18
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
7483a66399de Add a custom TextView widget to display groups in form of tabs.
Da Risk <da_risk@beem-project.com>
parents:
diff changeset
    19
    GNU General Public License for more details.
7483a66399de Add a custom TextView widget to display groups in form of tabs.
Da Risk <da_risk@beem-project.com>
parents:
diff changeset
    20
7483a66399de Add a custom TextView widget to display groups in form of tabs.
Da Risk <da_risk@beem-project.com>
parents:
diff changeset
    21
    You should have received a copy of the GNU General Public License
7483a66399de Add a custom TextView widget to display groups in form of tabs.
Da Risk <da_risk@beem-project.com>
parents:
diff changeset
    22
    along with BEEM.  If not, see <http://www.gnu.org/licenses/>.
7483a66399de Add a custom TextView widget to display groups in form of tabs.
Da Risk <da_risk@beem-project.com>
parents:
diff changeset
    23
7483a66399de Add a custom TextView widget to display groups in form of tabs.
Da Risk <da_risk@beem-project.com>
parents:
diff changeset
    24
    Please send bug reports with examples or suggestions to
7483a66399de Add a custom TextView widget to display groups in form of tabs.
Da Risk <da_risk@beem-project.com>
parents:
diff changeset
    25
    contact@beem-project.com or http://www.beem-project.com/
7483a66399de Add a custom TextView widget to display groups in form of tabs.
Da Risk <da_risk@beem-project.com>
parents:
diff changeset
    26
7483a66399de Add a custom TextView widget to display groups in form of tabs.
Da Risk <da_risk@beem-project.com>
parents:
diff changeset
    27
-->
7483a66399de Add a custom TextView widget to display groups in form of tabs.
Da Risk <da_risk@beem-project.com>
parents:
diff changeset
    28
<resources>
7483a66399de Add a custom TextView widget to display groups in form of tabs.
Da Risk <da_risk@beem-project.com>
parents:
diff changeset
    29
    <declare-styleable name="SectionTextView">
7483a66399de Add a custom TextView widget to display groups in form of tabs.
Da Risk <da_risk@beem-project.com>
parents:
diff changeset
    30
        <attr name="principalColor" format="color" />
7483a66399de Add a custom TextView widget to display groups in form of tabs.
Da Risk <da_risk@beem-project.com>
parents:
diff changeset
    31
        <attr name="nonPrincipalColor" format="color" />
7483a66399de Add a custom TextView widget to display groups in form of tabs.
Da Risk <da_risk@beem-project.com>
parents:
diff changeset
    32
        <attr name="principalLineSize" format="dimension" />
7483a66399de Add a custom TextView widget to display groups in form of tabs.
Da Risk <da_risk@beem-project.com>
parents:
diff changeset
    33
        <attr name="nonPrincipalLineSize" format="dimension" />
7483a66399de Add a custom TextView widget to display groups in form of tabs.
Da Risk <da_risk@beem-project.com>
parents:
diff changeset
    34
    </declare-styleable>
7483a66399de Add a custom TextView widget to display groups in form of tabs.
Da Risk <da_risk@beem-project.com>
parents:
diff changeset
    35
</resources>