首页 > 学院 > 开发设计 > 正文

Retrofit2入门实战

2019-11-06 06:12:24
字体:
来源:转载
供稿:网友
gradle 添加 compile 'io.reactivex.rxjava2:rxjava:2.0.6' //compile 'io.reactivex:rxandroid:1.2.1' compile 'com.squareup.retrofit2:retrofit:2.2.0' compile 'com.squareup.retrofit2:converter-gson:2.2.0' compile 'com.squareup.retrofit2:adapter-rxjava2:2.2.0' compile 'com.google.code.gson:gson:2.8.0' compile 'com.jakewharton:butterknife:8.5.1' annotationPRocessor 'com.jakewharton:butterknife-compiler:8.5.1'

activity_main添加:

<Button android:id="@+id/button" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:padding="5dp" android:text="button" android:textSize="16sp"/> <TextView android:id="@+id/text_view" android:layout_width="match_parent" android:layout_height="match_parent" android:text="Hello World!" android:layout_above="@+id/button" android:textSize="16sp"/> MainActivity.java添加:

import butterknife.BindView; import butterknife.ButterKnife; import butterknife.OnClick;

@BindView(R.id.text_view) TextView tvTest; @BindView(R.id.button) Button button; @OnClick(R.id.button) public void onClick(){ getMovie(); } private void getMovie(){ }
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表