zoukankan      html  css  js  c++  java
  • 引用自定义控件出现的问题

    <?xml version="1.0" encoding="utf-8"?>
    <base.PullToRefreshView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/main_pull_refresh_view"
    android:background="@android:color/white"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical">
    <!-- 这里放置listview,gridview或者scrollview的布局 ,PullToRefreshView
    要设置android:orientation="vertical"属性
    否则,显示不正确-->
    <ListView
    android:id="@android:id/list"
    android:cacheColorHint="#00000000"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" />

    </base.PullToRefreshView>

    引用自定义控件时 比如文中的 base.pulltorefreshview ,adt一直报错The following classes could not be instantiated

    定位到pulltorefreshview类中,代码也没错,检查XML文件,发现又黄色叹号警告,把黄色叹号警告去掉后正常。

     android:text="@string/testex"一开始没用这样,直接写的字符串导致叹号。 android:text="123123"以后要养成好的习惯,把字符串都写放到STRNG里

  • 相关阅读:
    mongodb 配置单实例与双实例
    redis 集群 搭建
    memcached 搭建
    公网yum 源地址
    jdk 安装
    activemq 搭建--集群
    zookeeper 安装
    activemq 安装-单点
    rabbitmq 集群
    python——网络编程
  • 原文地址:https://www.cnblogs.com/anarki1234/p/3156691.html
Copyright © 2011-2022 走看看