use of com.moez.QKSMS.ui.view.RobotoTextView in project qksms by moezbhatti.
the class WelcomeNightFragment method onCreateView.
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_welcome_night, container, false);
mNightTitle = (RobotoTextView) view.findViewById(R.id.welcome_night_title);
mNightDescription = (RobotoTextView) view.findViewById(R.id.welcome_night_description);
mNightHint = (QKTextView) view.findViewById(R.id.welcome_night_hint);
mNightHint.setOnClickListener(this);
mContext.setFinished();
return view;
}
Aggregations