统一标识常量等 便于之后的引用管理

chq_branch
Ssr 2 years ago
parent bbb85d6b56
commit cefa9bec0c

@ -14,9 +14,12 @@
* limitations under the License.
*/
package net.micode.notes.data;//类存在
//统一标识常量等 便于之后的引用管理
package net.micode.notes.data;
//URI在Android中提供了一种统一的方式来标识和访问各种资源促使应用程序之间更容易共享数据并支持在应用程序内部和之间进行交互
import android.net.Uri;
public class Notes {
//定义了很多常量
public static final String AUTHORITY = "micode_notes";
@ -273,7 +276,7 @@ public class Notes {
public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/text_note");
}
public static final class CallNote implements DataColumns {
public static final class CallNote implements DataColumns {//implements DataColumns: 这表示 CallNote 类实现了一个接口 DataColumns。通过实现 DataColumns 接口CallNote 类获得了接口中定义的方法和常量。
/**
* Call date for this record
*

Loading…
Cancel
Save