Initial commit
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Centro del D-Pad decorativo -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="oval">
|
||||
<solid android:color="#2C3138" />
|
||||
<stroke android:width="2dp" android:color="#FFD700" />
|
||||
</shape>
|
||||
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Fondo con gradiente vertical estilo Helldivers 2 -->
|
||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item>
|
||||
<shape android:shape="rectangle">
|
||||
<gradient
|
||||
android:angle="270"
|
||||
android:startColor="#0D0D0D"
|
||||
android:centerColor="#121417"
|
||||
android:endColor="#1B1F25"
|
||||
android:type="linear" />
|
||||
</shape>
|
||||
</item>
|
||||
|
||||
<!-- Subtle hex pattern overlay -->
|
||||
<item>
|
||||
<shape android:shape="rectangle">
|
||||
<solid android:color="#05050505" />
|
||||
</shape>
|
||||
</item>
|
||||
</layer-list>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Contenedor del codigo QR -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<solid android:color="#FFFFFF" />
|
||||
<corners android:radius="12dp" />
|
||||
<stroke android:width="3dp" android:color="#FFD700" />
|
||||
<padding android:left="16dp" android:top="16dp" android:right="16dp" android:bottom="16dp" />
|
||||
</shape>
|
||||
@@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Boton de direccion para D-Pad del juego -->
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_pressed="true">
|
||||
<shape android:shape="rectangle">
|
||||
<solid android:color="#FFD700" />
|
||||
<corners android:radius="4dp" />
|
||||
<stroke android:width="2dp" android:color="#FFFFFF" />
|
||||
</shape>
|
||||
</item>
|
||||
|
||||
<item android:state_focused="true">
|
||||
<shape android:shape="rectangle">
|
||||
<solid android:color="#00BFFF" />
|
||||
<corners android:radius="4dp" />
|
||||
<stroke android:width="2dp" android:color="#1E90FF" />
|
||||
</shape>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<shape android:shape="rectangle">
|
||||
<solid android:color="#1B1F25" />
|
||||
<corners android:radius="4dp" />
|
||||
<stroke android:width="2dp" android:color="#FFD700" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
@@ -0,0 +1,57 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Boton primario estilo Helldivers - Amarillo neon -->
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_pressed="true">
|
||||
<layer-list>
|
||||
<item>
|
||||
<shape android:shape="rectangle">
|
||||
<solid android:color="#2C3138" />
|
||||
<corners android:radius="8dp" />
|
||||
<stroke android:width="3dp" android:color="#FFE135" />
|
||||
</shape>
|
||||
</item>
|
||||
<item android:top="2dp" android:left="2dp" android:right="2dp" android:bottom="2dp">
|
||||
<shape android:shape="rectangle">
|
||||
<solid android:color="#1B1F25" />
|
||||
<corners android:radius="6dp" />
|
||||
</shape>
|
||||
</item>
|
||||
</layer-list>
|
||||
</item>
|
||||
|
||||
<item android:state_focused="true">
|
||||
<layer-list>
|
||||
<item>
|
||||
<shape android:shape="rectangle">
|
||||
<solid android:color="#1B1F25" />
|
||||
<corners android:radius="8dp" />
|
||||
<stroke android:width="2dp" android:color="#FFE135" />
|
||||
</shape>
|
||||
</item>
|
||||
<item android:top="2dp" android:left="2dp" android:right="2dp" android:bottom="2dp">
|
||||
<shape android:shape="rectangle">
|
||||
<solid android:color="#1B1F25" />
|
||||
<corners android:radius="6dp" />
|
||||
</shape>
|
||||
</item>
|
||||
</layer-list>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<layer-list>
|
||||
<item>
|
||||
<shape android:shape="rectangle">
|
||||
<solid android:color="#1B1F25" />
|
||||
<corners android:radius="8dp" />
|
||||
<stroke android:width="2dp" android:color="#FFD700" />
|
||||
</shape>
|
||||
</item>
|
||||
<item android:top="2dp" android:left="2dp" android:right="2dp" android:bottom="2dp">
|
||||
<shape android:shape="rectangle">
|
||||
<solid android:color="#1B1F25" />
|
||||
<corners android:radius="6dp" />
|
||||
</shape>
|
||||
</item>
|
||||
</layer-list>
|
||||
</item>
|
||||
</selector>
|
||||
@@ -0,0 +1,39 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Boton secundario estilo Helldivers - Azul neon -->
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_pressed="true">
|
||||
<layer-list>
|
||||
<item>
|
||||
<shape android:shape="rectangle">
|
||||
<solid android:color="#2C3138" />
|
||||
<corners android:radius="6dp" />
|
||||
<stroke android:width="2dp" android:color="#1E90FF" />
|
||||
</shape>
|
||||
</item>
|
||||
<item android:top="1dp" android:left="1dp" android:right="1dp" android:bottom="1dp">
|
||||
<shape android:shape="rectangle">
|
||||
<solid android:color="#1B1F25" />
|
||||
<corners android:radius="5dp" />
|
||||
</shape>
|
||||
</item>
|
||||
</layer-list>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<layer-list>
|
||||
<item>
|
||||
<shape android:shape="rectangle">
|
||||
<solid android:color="#1B1F25" />
|
||||
<corners android:radius="6dp" />
|
||||
<stroke android:width="1dp" android:color="#00BFFF" />
|
||||
</shape>
|
||||
</item>
|
||||
<item android:top="1dp" android:left="1dp" android:right="1dp" android:bottom="1dp">
|
||||
<shape android:shape="rectangle">
|
||||
<solid android:color="#1B1F25" />
|
||||
<corners android:radius="5dp" />
|
||||
</shape>
|
||||
</item>
|
||||
</layer-list>
|
||||
</item>
|
||||
</selector>
|
||||
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Icono Gamepad/Estratagemas -->
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="32dp"
|
||||
android:height="32dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24"
|
||||
android:tint="#FFD700">
|
||||
<path
|
||||
android:fillColor="#FFD700"
|
||||
android:pathData="M21,6H3c-1.1,0 -2,0.9 -2,2v8c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2V8C23,6.9 22.1,6 21,6zM11,13H8v3H6v-3H3v-2h3V8h2v3h3V13zM15.5,15c-0.83,0 -1.5,-0.67 -1.5,-1.5S14.67,12 15.5,12s1.5,0.67 1.5,1.5S16.33,15 15.5,15zM19.5,12c-0.83,0 -1.5,-0.67 -1.5,-1.5S18.67,9 19.5,9s1.5,0.67 1.5,1.5S20.33,12 19.5,12z" />
|
||||
</vector>
|
||||
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Foreground del icono - Estilo Helldivers 2 -->
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="108dp"
|
||||
android:height="108dp"
|
||||
android:viewportWidth="108"
|
||||
android:viewportHeight="108">
|
||||
<path
|
||||
android:fillColor="#FFD700"
|
||||
android:pathData="M54,28 L70,44 L70,64 L54,80 L38,64 L38,44 Z" />
|
||||
<path
|
||||
android:fillColor="#000000"
|
||||
android:pathData="M54,36 L62,44 L62,60 L54,68 L46,60 L46,44 Z" />
|
||||
<path
|
||||
android:fillColor="#FFD700"
|
||||
android:pathData="M54,44 L58,48 L58,56 L54,60 L50,56 L50,48 Z" />
|
||||
</vector>
|
||||
@@ -0,0 +1,39 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Icono QR simple -->
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="32dp"
|
||||
android:height="32dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24"
|
||||
android:tint="#FFD700">
|
||||
<path
|
||||
android:fillColor="#FFD700"
|
||||
android:pathData="M3,11h8V3H3V11zM5,5h4v4H5V5z" />
|
||||
<path
|
||||
android:fillColor="#FFD700"
|
||||
android:pathData="M13,3v8h8V3H13zM19,9h-4V5h4V9z" />
|
||||
<path
|
||||
android:fillColor="#FFD700"
|
||||
android:pathData="M3,21h8v-8H3V21zM5,15h4v4H5V15z" />
|
||||
<path
|
||||
android:fillColor="#FFD700"
|
||||
android:pathData="M13,13h2v2h-2z" />
|
||||
<path
|
||||
android:fillColor="#FFD700"
|
||||
android:pathData="M13,17h2v2h-2z" />
|
||||
<path
|
||||
android:fillColor="#FFD700"
|
||||
android:pathData="M17,13h2v4h-2z" />
|
||||
<path
|
||||
android:fillColor="#FFD700"
|
||||
android:pathData="M19,17h2v2h-2z" />
|
||||
<path
|
||||
android:fillColor="#FFD700"
|
||||
android:pathData="M19,13h2v2h-2z" />
|
||||
<path
|
||||
android:fillColor="#FFD700"
|
||||
android:pathData="M17,19h4v2h-4z" />
|
||||
<path
|
||||
android:fillColor="#FFD700"
|
||||
android:pathData="M13,19h2v2h-2z" />
|
||||
</vector>
|
||||
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Placeholder para logo Helldivers 2 - Estilo text based -->
|
||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<!-- Fondo oscuro -->
|
||||
<item>
|
||||
<shape android:shape="rectangle">
|
||||
<solid android:color="#0D0D0D" />
|
||||
<corners android:radius="8dp" />
|
||||
</shape>
|
||||
</item>
|
||||
|
||||
<!-- Borde amarillo -->
|
||||
<item>
|
||||
<shape android:shape="rectangle">
|
||||
<solid android:color="#00000000" />
|
||||
<corners android:radius="8dp" />
|
||||
<stroke android:width="3dp" android:color="#FFD700" />
|
||||
</shape>
|
||||
</item>
|
||||
</layer-list>
|
||||
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item>
|
||||
<shape android:shape="rectangle">
|
||||
<solid android:color="#0D0D0D" />
|
||||
</shape>
|
||||
</item>
|
||||
<item android:bottom="3dp" android:left="3dp" android:right="3dp" android:top="3dp">
|
||||
<shape android:shape="rectangle">
|
||||
<solid android:color="#00000000" />
|
||||
<stroke android:width="2dp" android:color="#FFD700" />
|
||||
</shape>
|
||||
</item>
|
||||
</layer-list>
|
||||
Reference in New Issue
Block a user