Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Missing component in Layout ( tv_playername & iv_playericon) #7

Open
KiranChimple opened this issue Sep 7, 2017 · 0 comments
Open

Comments

@KiranChimple
Copy link

package com.mediamonks.googleflip.ui;

import android.content.Context;
import android.util.AttributeSet;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView;

import com.mediamonks.googleflip.R;

import butterknife.Bind;
import butterknife.ButterKnife;

/**
*
*/
public class PlayerItem extends LinearLayout {
private static final String TAG = PlayerItem.class.getSimpleName();

@Bind(R.id.tv_playername)                       // ERROR 1 : the tv_playername is not exist in layout
protected TextView _playerText;
@Bind(R.id.iv_playericon)                           // ERROR 2 : the iv_playericon is not exist in layout
protected ImageView _playerIcon;

private String _playerName;
private int _color;
private Context _context;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant