use of android.widget.TextView in project cw-omnibus by commonsguy.
the class PopupAdapter method getInfoContents.
@SuppressLint("InflateParams")
@Override
public View getInfoContents(Marker marker) {
if (popup == null) {
popup = inflater.inflate(R.layout.popup, null);
}
TextView tv = (TextView) popup.findViewById(R.id.title);
tv.setText(marker.getTitle());
tv = (TextView) popup.findViewById(R.id.snippet);
tv.setText(marker.getSnippet());
return (popup);
}
use of android.widget.TextView in project cw-omnibus by commonsguy.
the class PopupAdapter method getInfoContents.
@SuppressLint("InflateParams")
@Override
public View getInfoContents(Marker marker) {
if (popup == null) {
popup = inflater.inflate(R.layout.popup, null);
}
TextView tv = (TextView) popup.findViewById(R.id.title);
tv.setText(marker.getTitle());
tv = (TextView) popup.findViewById(R.id.snippet);
tv.setText(marker.getSnippet());
return (popup);
}
use of android.widget.TextView in project cw-omnibus by commonsguy.
the class LegalNoticesActivity method onCreate.
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.legal);
TextView legal = (TextView) findViewById(R.id.legal);
legal.setText(GoogleApiAvailability.getInstance().getOpenSourceSoftwareLicenseInfo(this));
}
use of android.widget.TextView in project cw-omnibus by commonsguy.
the class LegalNoticesActivity method onCreate.
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.legal);
TextView legal = (TextView) findViewById(R.id.legal);
legal.setText(GoogleApiAvailability.getInstance().getOpenSourceSoftwareLicenseInfo(this));
}
use of android.widget.TextView in project cw-omnibus by commonsguy.
the class LegalNoticesActivity method onCreate.
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.legal);
TextView legal = (TextView) findViewById(R.id.legal);
legal.setText(GoogleApiAvailability.getInstance().getOpenSourceSoftwareLicenseInfo(this));
}
Aggregations