Tabnine Logo
EaseTitleBar.setTitle
Code IndexAdd Tabnine to your IDE (free)

How to use
setTitle
method
in
com.hyphenate.easeui.widget.EaseTitleBar

Best Java code snippets using com.hyphenate.easeui.widget.EaseTitleBar.setTitle (Showing top 7 results out of 315)

origin: Vegen/SmartCampus

private void setupView() {
  titleBar.setTitle(getString(R.string.title_group_notification));
  titleBar.setRightLayoutVisibility(View.VISIBLE);
origin: Vegen/SmartCampus

@Override
protected void onCreate(Bundle arg0) {
  super.onCreate(arg0);
  setContentView(R.layout.ease_activity_ding_ack_user_list);
  ackUserListView = (ListView) findViewById(R.id.list_view);
  titleBar = (EaseTitleBar) findViewById(R.id.title_bar);
  titleBar.setTitle(getString(R.string.title_ack_read_list));
  // Set the title bar left layout click listener to back to previous activity.
  titleBar.setLeftLayoutClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View v) {
      back(v);
    }
  });
  msg = getIntent().getParcelableExtra("msg");
  EMLog.i(TAG, "Get msg from intent, msg: " + msg.toString());
  userList = new ArrayList<>();
  userAdapter = new AckUserAdapter(this, userList);
  ackUserListView.setAdapter(userAdapter);
}
origin: easemob/livestream_demo_android

protected void setUpView() {
  titleBar.setTitle(toChatUsername);
  if (chatType == EaseConstant.CHATTYPE_SINGLE) {
      titleBar.setTitle(EaseUserUtils.getUserInfo(toChatUsername).getNick());
        titleBar.setTitle(group.getGroupName());
origin: zhangchunbin/HuanXinDemo

protected void setUpView() {
  titleBar.setTitle(toChatUsername);
  if (chatType == EaseConstant.CHATTYPE_SINGLE) {
      EaseUser user = EaseUserUtils.getUserInfo(toChatUsername);
      if (user != null) {
        titleBar.setTitle(user.getNick());
        titleBar.setTitle(group.getGroupName());
origin: WuXiaolong/WoChat

titleBar.setTitle(toChatUsername);
if (chatType == EaseConstant.CHATTYPE_SINGLE) { // 单聊
    titleBar.setTitle(EaseUserUtils.getUserInfo(toChatUsername).getNick());
      titleBar.setTitle(group.getGroupName());
origin: Vegen/SmartCampus

protected void setUpView() {
  titleBar.setTitle(toChatUsername);
  if (chatType == EaseConstant.CHATTYPE_SINGLE) {
      EaseUser user = EaseUserUtils.getUserInfo(toChatUsername);
      if (user != null) {
        titleBar.setTitle(user.getNick());
        titleBar.setTitle(group.getGroupName());
origin: stevenwsg/XSY-University-trade

protected void setUpView() {
  titleBar.setTitle(toChatUsername);
  if (chatType == EaseConstant.CHATTYPE_SINGLE) {
      EaseUser user = EaseUserUtils.getUserInfo(toChatUsername);
      if (user != null) {
        titleBar.setTitle(user.getNick());
        titleBar.setTitle(group.getGroupName());
com.hyphenate.easeui.widgetEaseTitleBarsetTitle

Popular methods of EaseTitleBar

  • setLeftLayoutClickListener
  • findViewById
  • init
  • parseStyle
  • setRightImageResource
  • setRightLayoutClickListener
  • setVisibility
  • getRightLayout
  • setRightLayoutVisibility

Popular in Java

  • Running tasks concurrently on multiple threads
  • putExtra (Intent)
  • compareTo (BigDecimal)
  • findViewById (Activity)
  • BufferedInputStream (java.io)
    A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the i
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
  • ImageIO (javax.imageio)
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
  • From CI to AI: The AI layer in your organization
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now