伪代码贴上 @Override protected void onCreate(Bundle savedInstanceState) { mWebView = (WebView) findViewById(R.id.webview); //获得webView initWebView(); } pri ...
分类:
移动开发 时间:
2021-06-25 17:11:53
阅读次数:
0
1.学习了这么多知识开始实战 部分代码:public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) { / ...
分类:
其他好文 时间:
2021-06-21 21:06:22
阅读次数:
0
#转自 https://blog.csdn.net/liubin8095/article/details/9328563 Activity中有一个名称叫onCreate的方法。该方法是在Activity创建时被系统调用,是一个Activity生命周期的开始。可是有一点容易被忽视,就是onCreate ...
分类:
其他好文 时间:
2020-10-09 20:49:48
阅读次数:
25
在此之前还是补充下关于监听器的两个要点: 向下一个活动传递数据 : button1.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { String data = "Hello ...
分类:
移动开发 时间:
2020-05-13 21:48:30
阅读次数:
180
1 public class MainActivity extends AppCompatActivity { 2 3 @Override 4 protected void onCreate(Bundle savedInstanceState) { 5 super.onCreate(savedIns ...
分类:
移动开发 时间:
2020-03-16 19:13:32
阅读次数:
95
okhttp class MainActivity : AppCompatActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentVi ...
分类:
其他好文 时间:
2020-02-06 19:48:01
阅读次数:
129
protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); button = (Button) fin... ...
分类:
移动开发 时间:
2019-11-05 13:36:01
阅读次数:
136
private Button button; private final CharSequence items[] = { "北京", "上海", "广州" }; @Override protected void onCreate(Bundle savedInstanceState) { super... ...
分类:
移动开发 时间:
2019-11-04 19:48:04
阅读次数:
306
private Button button; private final CharSequence[] items = { "北京", "上海", "广州" }; @Override protected void onCreate(Bundle savedInstanceState) { super... ...
分类:
移动开发 时间:
2019-11-04 19:36:32
阅读次数:
265
private Button button; private final CharSequence[] items = { "北京", "上海", "广州" }; @Override protected void onCreate(Bundle savedInstanceState) { super... ...
分类:
移动开发 时间:
2019-11-04 19:36:16
阅读次数:
373