Get html of a website with retrofit - Android?
问题 How can I get html of a website with retrofit ? for example I have this url and I need to get html of this url and how can I load more . Bellow is my code : MainActivity.java: public class MainActivity extends AppCompatActivity { TextView txt; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); txt = (TextView) findViewById(R.id.txt); OkHttpClient okHttpClient = new OkHttpClient().newBuilder() .build();