Skip to content
Snippets Groups Projects

Make interface list scrollable

Merged akwizgran requested to merge make-interface-list-scrollable into master
2 files
+ 14
8
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -21,7 +21,7 @@ public class InterfacesFragment extends Fragment {
@Override
public void onViewCreated(@NonNull View v, @Nullable Bundle savedInstanceState) {
super.onViewCreated(v, savedInstanceState);
TextView textView = (TextView) v;
TextView textView = v.findViewById(R.id.text);
textView.setText(NetworkUtils.getNetworkInterfaceSummary());
}
Loading