Back to project page Android-ListView-ContentProvider.
The source code is released under:
MIT License
If you think the Android project Android-ListView-ContentProvider listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.iop.listprovider.model; /*from w ww .ja v a 2 s . com*/ /** * Created by Rafael Iop * * Contm como atributos o nome das colunas da tabela "nota" do banco de dados * */ public class Nota { // Nome da tabela no bd public static final String TABELA = "nota"; // Atributos bsicos public static String ID = "_id"; public static String DATA = "data"; // Prioridade e tipos (as cores esto em /values/colors.xml) public static String PRIORIDADE = "prioridade"; public static int PRIORIDADE_BAIXA = 0; public static int PRIORIDADE_MEDIA = 1; public static int PRIORIDADE_ALTA = 2; // Informaes da Nota public static String TITULO = "titulo"; public static String DESCRICAO = "descricao"; // Usada para obter apenas o comeo da string descrio // SUBSTR: Obtm apenas uma parte da string (de 0 at 50) // REPLACE: Substitui as quebras de linha (\n) por espaos public static int DESCRICAO_RESUMIDA_TAM = 50; public static String DESCRICAO_RESUMIDA = "REPLACE(SUBSTR(descricao, 0, " + DESCRICAO_RESUMIDA_TAM+"),'\n',' ') as descricao"; }