apt-cache search <nombre-paquete>
apt-cache search <nombre-paquete> | grep <palabra a resaltar y filtrar>
android:id="@+id/tvMainTitle"el id es tvMainTitle, este id puede ser referenciado mediante...
R.id.tvMainTitle
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="match_parent"> <TextView
android:id="@+id/tvMainTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="Hola Mundo!"/>
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher_background"/>
<LinearLayout
android:layout_width="match_parent"
android:orientation="horizontal"
android:gravity="center"
android:layout_height="wrap_content">
<ImageView
android:layout_width="120dp"
android:layout_height="120dp"
android:src="@drawable/ic_filter_1_black_24dp"/>
<ImageView
android:layout_width="120dp"
android:layout_height="120dp"
android:src="@drawable/ic_filter_2_black_24dp"/>
<ImageView
android:layout_width="120dp"
android:layout_height="120dp"
android:src="@drawable/ic_filter_3_black_24dp"/>
</LinearLayout>
</LinearLayout>
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"> <ImageView
android:layout_width="240dp"
android:layout_height="200dp"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:src="@drawable/rojo" /> <ImageView
android:id="@+id/ivMainVerde"
android:layout_width="150dp"
android:layout_height="370dp"
android:layout_alignParentTop="true"
android:layout_alignParentEnd="true"
android:src="@drawable/verde" /> <ImageView
android:layout_width="250dp"
android:layout_height="130dp"
android:layout_below="@+id/ivMainVerde"
android:src="@drawable/azul" /> <ImageView
android:layout_width="130dp"
android:layout_height="130dp"
android:layout_alignParentEnd="true"
android:layout_alignParentBottom="true"
android:src="@drawable/rosado" />
</RelativeLayout>
fun main(args: Array<String>){ var numero1:Int var numero2=1
}
para numero1 se define de tipo entero (Int), para numero2 se entiende que es de tipo Int (entero), para las variables no sebe usar acentosprintln("${variable::class.simpleName}")con variable como el numbre de nuestra variable de estudio
println("${num::class.qualifiedName}")Éste nos entrega el nombre completo de la clase separado por un punto o entrega
null
si la clase es local o es un objeto anónimo literal. fun main(args: Array<String>){ var numero1:Int var numero2=1}
: un entero de 8 bits sin signo, varía de 0 a 255site
module (Constantes añadidas por el módulo del sitio)and
, or
, not (Operaciones booleanas - y, o, no)
int
, float
, complex (Tipos numéricos - int, float, complex)
list
, tuple
, range (Tipos de secuencia - lista, tupla, rango)
str (Tipo de secuencia de texto - str)
bytes
, bytearray
, memoryview (Tipos de secuencia binaria - bytes, matriz de bytes, vista de memoria)
set
, frozenset (Tipos de set - set, set congelado)
dict (Tipos de mapas - dict)
string
— Common string operations (Operaciones comunes de string)re
— Regular expression operations (Operaciones de expresión regular)difflib
— Helpers for computing deltas (Ayudas para el cálculo de los deltas)textwrap
— Text wrapping and filling (Envoltura y relleno de texto)unicodedata
— Unicode Database (Base de datos Unicode)stringprep
— Internet String Preparation (Preparación de cadenas de Internet)readline
— GNU readline interface (Interfaz de línea de lectura de GNU)rlcompleter
— Completion function for GNU readline (Función de finalización para la línea de lectura de GNU)struct
— Interpret bytes as packed binary datacodecs
— Codec registry and base classesdatetime
— Basic date and time types (Tipos básicos de fecha y hora)calendar
— General calendar-related functions (Funciones generales relacionadas con el calendario)collections
— Container datatypes (Tipos de datos de contenedor)collections.abc
— Abstract Base Classes for Containers (Clases base abstractas para contenedores)heapq
— Heap queue algorithm (Algoritmo de cola de espera)bisect
— Array bisection algorithm (Algoritmo de bisección de matrices)array
— Efficient arrays of numeric values (Matrices eficientes de valores numéricos)weakref
— Weak references (Referencias débiles)types
— Dynamic type creation and names for built-in typescopy
— Shallow and deep copy operationspprint
— Data pretty printer (Impresora bonita de datos)reprlib
— Alternate repr()
implementation (Implementación alternativa de repr ())enum
— Support for enumerations (Soporte para enumeraciones)numbers
— Numeric abstract base classes (Clases base abstractas numéricas)math
— Mathematical functions (Funciones matematicas)cmath
— Mathematical functions for complex numbers (Funciones matemáticas para números complejos.)decimal
— Decimal fixed point and floating point arithmetic (Punto fijo decimal y aritmética de coma flotante)fractions
— Rational numbers (Numeros racionales)random
— Generate pseudo-random numbers (Generar números pseudoaleatorios)statistics
— Mathematical statistics functions (Funciones de estadística matemática)itertools
— Functions creating iterators for efficient looping (Funciones que crean iteradores para un bucle eficiente)functools
— Higher-order functions and operations on callable objects (Funciones y operaciones de orden superior en objetos invocables)operator
— Standard operators as functions (Operadores estándar como funciones)pathlib
— Object-oriented filesystem paths (Rutas de sistema de archivos orientadas a objetos)os.path
— Common pathname manipulations (Manipulaciones comunes de nombres de ruta)fileinput
— Iterate over lines from multiple input streams (Iterar sobre líneas de múltiples flujos de entrada)stat
— Interpreting stat()
results (Interpretación de los resultados de stat ())filecmp
— File and Directory Comparisons (Comparaciones de archivos y directorios)tempfile
— Generate temporary files and directories (Generar archivos y directorios temporales)glob
— Unix style pathname pattern expansion (Expansión de patrón de nombre de ruta de estilo Unix)fnmatch
— Unix filename pattern matching (Unix coincidencia de patrones de nombre de archivo)linecache
— Random access to text lines (Acceso aleatorio a líneas de texto)shutil
— High-level file operationsmacpath
— Mac OS 9 path manipulation functionspickle
— Python object serializationcopyreg
— Register pickle
support functionsshelve
— Python object persistencemarshal
— Internal Python object serializationdbm
— Interfaces to Unix “databases”sqlite3
— DB-API 2.0 interface for SQLite databaseszlib
— Compression compatible with gzip (Compresión compatible con gzip)gzip
— Support for gzip files (Soporte para archivos gzip)bz2
— Support for bzip2 compression (Soporte para compresión bzip2)lzma
— Compression using the LZMA algorithm (Compresión usando el algoritmo LZMA)zipfile
— Work with ZIP archives (Trabajar con archivos ZIP)tarfile
— Read and write tar archive files (Leer y escribir archivos tar)csv
— CSV File Reading and Writing (Lectura y escritura de archivos CSV)configparser
— (Analizador de archivos de configuración)netrc
— netrc file processing (procesamiento de archivos netrc)xdrlib
— Encode and decode XDR data (Codificar y decodificar datos XDR)plistlib
— Generate and parse Mac OS X .plist
fileshashlib
— Secure hashes and message digests (Asegure hashes y resúmenes de mensajes)hmac
— Keyed-Hashing for Message Authenticationsecrets
— Generate secure random numbers for managing secrets (Genere números aleatorios seguros para administrar secretos)os
— Miscellaneous operating system interfaces (Interfaces diversas del sistema operativo)io
— Core tools for working with streams (Herramientas básicas para trabajar con flujos)time
— Time access and conversions (Tiempo de acceso y conversiones)argparse
— Parser for command-line options, arguments and sub-commandsgetopt
— C-style parser for command line options (Analizador de estilo C para opciones de línea de comando)logging
— Logging facility for Python (Instalación de registro para Python)logging.config
— Logging configuration (Configuración de registro)logging.handlers
— Logging handlers (Controladores de registro)getpass
— Portable password input (Entrada de contraseña portátil)curses
— Terminal handling for character-cell displays (Manejo de terminales para pantallas de celdas de caracteres)curses.textpad
— Text input widget for curses programs (Widget de entrada de texto para programas de maldiciones)curses.ascii
— Utilities for ASCII characters (Utilidades para caracteres ASCII)curses.panel
— A panel stack extension for curses (Una extensión de pila de paneles para maldiciones)platform
— Access to underlying platform’s identifying data (Acceso a los datos de identificación de la plataforma subyacente.)errno
— Standard errno system symbols (Símbolos del sistema errno estándar)ctypes
— A foreign function library for Python (Una biblioteca de funciones foráneas para Python)threading
— Thread-based parallelism (Paralelismo basado en hilos)multiprocessing
— Process-based parallelism (Paralelismo basado en procesos)concurrent
package (El paquete concurrente)concurrent.futures
— Launching parallel tasks (Lanzar tareas paralelas)subprocess
— Subprocess management (Gestión de subprocesos)sched
— Event scheduler (Planificador de eventos)queue
— A synchronized queue class (Una clase de cola sincronizada)_thread
— Low-level threading API_dummy_thread
— Drop-in replacement for the _thread
moduledummy_threading
— Drop-in replacement for the threading
modulecontextvars
— Context Variables (Variables de contexto)asyncio
— Asynchronous I/Osocket
— Low-level networking interfacessl
— TLS/SSL wrapper for socket objectsselect
— Waiting for I/O completionselectors
— High-level I/O multiplexingasyncore
— Asynchronous socket handlerasynchat
— Asynchronous socket command/response handlersignal
— Set handlers for asynchronous eventsmmap
— Memory-mapped file supportemail
— An email and MIME handling packagejson
— JSON encoder and decodermailcap
— Mailcap file handlingmailbox
— Manipulate mailboxes in various formatsmimetypes
— Map filenames to MIME typesbase64
— Base16, Base32, Base64, Base85 Data Encodingsbinhex
— Encode and decode binhex4 filesbinascii
— Convert between binary and ASCIIquopri
— Encode and decode MIME quoted-printable datauu
— Encode and decode uuencode fileshtml
— HyperText Markup Language supporthtml.parser
— Simple HTML and XHTML parserhtml.entities
— Definitions of HTML general entitiesxml.etree.ElementTree
— The ElementTree XML APIxml.dom
— The Document Object Model APIxml.dom.minidom
— Minimal DOM implementationxml.dom.pulldom
— Support for building partial DOM treesxml.sax
— Support for SAX2 parsersxml.sax.handler
— Base classes for SAX handlersxml.sax.saxutils
— SAX Utilitiesxml.sax.xmlreader
— Interface for XML parsersxml.parsers.expat
— Fast XML parsing using Expatwebbrowser
— Convenient Web-browser controllercgi
— Common Gateway Interface supportcgitb
— Traceback manager for CGI scriptswsgiref
— WSGI Utilities and Reference Implementationurllib
— URL handling modulesurllib.request
— Extensible library for opening URLsurllib.response
— Response classes used by urlliburllib.parse
— Parse URLs into componentsurllib.error
— Exception classes raised by urllib.requesturllib.robotparser
— Parser for robots.txthttp
— HTTP moduleshttp.client
— HTTP protocol clientftplib
— FTP protocol clientpoplib
— POP3 protocol clientimaplib
— IMAP4 protocol clientnntplib
— NNTP protocol clientsmtplib
— SMTP protocol clientsmtpd
— SMTP Servertelnetlib
— Telnet clientuuid
— UUID objects according to RFC 4122socketserver
— A framework for network servershttp.server
— HTTP servershttp.cookies
— HTTP state managementhttp.cookiejar
— Cookie handling for HTTP clients (Manejo de cookies para clientes HTTP)xmlrpc
— XMLRPC server and client modules (Servidor XMLRPC y módulos de cliente)xmlrpc.client
— XML-RPC client access (Acceso de cliente XML-RPC)xmlrpc.server
— Basic XML-RPC servers (Servidores básicos de XML-RPC)ipaddress
— IPv4/IPv6 manipulation library (Biblioteca de manipulación de IPv4 / IPv6)audioop
— Manipulate raw audio data (Manipular datos de audio sin procesar)aifc
— Read and write AIFF and AIFC files (Leer y escribir archivos AIFF y AIFC)sunau
— Read and write Sun AU files (Leer y escribir archivos Sun AU)wave
— Read and write WAV files (Leer y escribir archivos WAV)chunk
— Read IFF chunked data (Leer datos fragmentados de IFF)colorsys
— Conversions between color systems (Conversiones entre sistemas de color)imghdr
— Determine the type of an image (Determinar el tipo de imagen)sndhdr
— Determine type of sound file (Determinar el tipo de archivo de sonido)ossaudiodev
— Access to OSS-compatible audio devices (Acceso a dispositivos de audio compatibles con OSS)gettext
— Multilingual internationalization services (Servicios de internacionalización multilingües)locale
— Internationalization services (Servicios de internacionalización)turtle
— Turtle graphics (Gráficos de tortuga)cmd
— Support for line-oriented command interpretersshlex
— Simple lexical analysistkinter
— Python interface to Tcl/Tktkinter.ttk
— Tk themed widgetstkinter.tix
— Extension widgets for Tktkinter.scrolledtext
— Scrolled Text Widgettyping
— Support for type hints (Soporte para sugerencias de tipo)pydoc
— Documentation generator and online help system (Generador de documentación y sistema de ayuda en línea)doctest
— Test interactive Python examples (Prueba ejemplos interactivos de Python)unittest
— Unit testing framework (Marco de pruebas unitarias)unittest.mock
— mock object library (biblioteca de objetos simulados)unittest.mock
— getting startedtest
— Regression tests package for Pythontest.support
— Utilities for the Python test suitetest.support.script_helper
— Utilities for the Python execution testsbdb
— Debugger frameworkfaulthandler
— Dump the Python tracebackpdb
— The Python Debuggertimeit
— Measure execution time of small code snippetstrace
— Trace or track Python statement executiontracemalloc
— Trace memory allocationsdistutils
— Building and installing Python modulesensurepip
— Bootstrapping the pip
installervenv
— Creation of virtual environmentszipapp
— Manage executable Python zip archivessys
— System-specific parameters and functionssysconfig
— Provide access to Python’s configuration informationbuiltins
— Built-in objects__main__
— Top-level script environmentwarnings
— Warning controldataclasses
— Data Classescontextlib
— Utilities for with
-statement contextsabc
— Abstract Base Classesatexit
— Exit handlerstraceback
— Print or retrieve a stack traceback__future__
— Future statement definitionsgc
— Garbage Collector interfaceinspect
— Inspect live objectssite
— Site-specific configuration hookcode
— Interpreter base classescodeop
— Compile Python codezipimport
— Import modules from Zip archivespkgutil
— Package extension utilitymodulefinder
— Find modules used by a scriptrunpy
— Locating and executing Python modulesimportlib
— The implementation of import
parser
— Access Python parse treesast
— Abstract Syntax Treessymtable
— Access to the compiler’s symbol tablessymbol
— Constants used with Python parse treestoken
— Constants used with Python parse treeskeyword
— Testing for Python keywordstokenize
— Tokenizer for Python sourcetabnanny
— Detection of ambiguous indentationpyclbr
— Python class browser supportpy_compile
— Compile Python source filescompileall
— Byte-compile Python librariesdis
— Disassembler for Python bytecodepickletools
— Tools for pickle developersformatter
— Generic output formattingmsilib
— Read and write Microsoft Installer filesmsvcrt
— Useful routines from the MS VC++ runtimewinreg
— Windows registry accesswinsound
— Sound-playing interface for Windowsposix
— The most common POSIX system callspwd
— The password databasespwd
— The shadow password databasegrp
— The group databasecrypt
— Function to check Unix passwordstermios
— POSIX style tty controltty
— Terminal control functionspty
— Pseudo-terminal utilitiesfcntl
— The fcntl
and ioctl
system callspipes
— Interface to shell pipelinesresource
— Resource usage informationnis
— Interface to Sun’s NIS (Yellow Pages)syslog
— Unix syslog library routinesoptparse
— Parser for command line optionsimp
— Access the import internals