Android添加书签(二)(7)
来源:未知 责任编辑:责任编辑 发表时间:2013-11-26 22:12 点击:次
}).create();
} else if (id == DIALOG_WELCOME) {
String message = getString(R.string.welcome);
if (bookmarkAdapter.getCount() < 1) {
message += getString(R.string.nomarks);
}
AlertDialog dialog = new AlertDialog.Builder(Bookmarker.this)
.create();// new AlertDialog(Bookmarker.this);
dialog.setTitle("Welcome");
dialog.setMessage(message);
dialog.setButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
if (bookmarkAdapter.getCount() < 1) {
finish();
}
}
});
dialog.setCancelable(true);
return dialog;
} else
return null;
}
}
BookmarkItem.java:
Java代码
package com.iaiai;
import android.content.Context;
import android.graphics.Bitmap;
import android.view.LayoutInflater;
import android.widget.ImageView;
import android.widget.RelativeLayout;
import android.widget.TextView;
相关新闻>>
最新推荐更多>>>
- 发表评论
-
- 最新评论 更多>>