AndroidStudio为最新版,从github上拉取的项目无法启动,报错:Installation did not succeed. The application could not be installed.报错内容不提示具体原因。 解决方法:在gradle.properties中添加一行代码android.injected.testOnly=false
在FragmentActivity的fragment跳转的时候加入到执行栈。Fragment fragment1 = new ThingFragment(); Bundle bundle=new Bundle(); bundle.putString("name",key.getText().toString()); …
请求框架搭建完,设置了BaseUrl开始访问,结果CLEARTEXT communication to XX not permitted by network security policy是我们的baseUrl因为是内部测试环境所以使用的是ip地址,或者http://原因:Android P系统限制了明文流量的网络请求,之下的版本没有影响,所以okhttp3会抛出该异常。解决方案1:https:…
Fragment fragment1 = new ClientFragment(); Bundle bundle=new Bundle(); bundle.putString("organId",t.getId().toString()); fragment1.setArguments(b…
notifyDataSetChanged()//整个recycleview刷新notifyItemChanged(int position)//从第几个刷新,比如position=3,一共有5条数据,那么刷新3-5的数据,1和2不刷新notifyItemChanged(int position,Object payload)//指定刷新哪条数据,后面跟的是数据对象notifyItemRemoved…
先设置一个弹窗的布局XML,qrcode.xml<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width=&…
新建一个OKHttp的通用类package com.example.app.util;import android.os.Handler;import android.os.Looper;import org.json.JSONException;import java.io.File;import java.io.FileOutputStream;import java.io.IOExcepti…
简单拖拽一个按钮,绑定一个test事件,然后运用如下代码:package com.example.test_alert;import androidx.appcompat.app.AlertDialog;import androidx.appcompat.app.AppCompatActivity;import android.content.DialogInterface;import andr…
首先创建一个item_spinner.xml<?xml version="1.0" encoding="utf-8"?><TextView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="ma…
首先创建在value下面创建一个value类型的xml,我这里起名叫array.xml<?xml version="1.0" encoding="utf-8"?><resources> <string-array name="data"> <item>出租</ite…
首先新建一个XXAdapter文件package com.example.app.ui.win;import android.app.Activity;import android.view.View;import android.view.ViewGroup;import android.widget.BaseAdapter;import android.widget.TextView;impo…
<EditText android:id="@+id/edt_order_note_text" android:layout_width="match_parent" android:…
final EditText inputServer = new EditText(adapterActivity); AlertDialog.Builder builder = new AlertDialog.Builder(adapterActivity); builder.setTitle("请输入数量&q…
RecyclerView只显示一行的问题,RecyclerView只显示一个item,其它的全被覆盖了以下是item.xml代码<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/…
打开File-Project Structure-Modules把Target SDK Version的版本和Min SDKVersion版本改为一至即可
XML:<?xml version="1.0" encoding="utf-8"?><androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:…
Fragment fragment1 = new MySportFragment();getFragmentManager().beginTransaction().replace(R.id.nav_host_fragment_content_main, fragment1).commit();
在夜神模拟器中,编译运行项目,报错:The application could not be installed: INSTALL_PARSE_FAILED_NO_CERTIFICATES 。看了一下模拟器的安卓版本7.1,我的minSdkVersion是24,没有问题啊。后来发现是Google为了提高Android系统的安全性,从Android 7.0开始增加一种新的增强签名模式。不知道是不是A…
videoView唯一的好处是不需要安装任何插件组件,特别方便,主要实现代码也很简单,如下<VideoView android:id="@+id/videoView" android:layout_width="match_parent" android:layout_height="wrap_con…