10 2022 档案
摘要:从活动内发送网络请求,代码如下: package com.example.shuilangyizu; import android.app.ActionBar; import android.content.Context; import android.content.DialogInterfac
阅读全文
摘要:一、AlertDialog: AlertDialog.Builder builder = new AlertDialog.Builder(ReturnActivity.this, android.support.design.R.style.Base_Theme_AppCompat_Dialog_A
阅读全文
摘要:需求: 实现一个页面上整体内容可以上下滚动,页面的上半部分是一些固定内容,下半部分是一个固定高度的列表。 这种布局页面底部使用ListView,外层使用ScrollView包裹就可以实现页面内容整体上下滚动。但是当ScrollView嵌套ListView的时候会产生滑动冲突,会导致ListView滑
阅读全文
摘要:Android App自动更新基本上是每个App都需具备的功能,参考网上各种资料,自己整理了下,先来看看大致的界面: 一、实现思路:1.发布Android App时,都会生成output-metadata.json文件和对应的apk文件。(不知道如何打包发布apk,可以网上搜一下)2.output-
阅读全文