- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
任何人都可以给我 Android 的 Http get 和 post 请求的完整代码,如下所示 https://wowjava.wordpress.com/2011/01/16/login-application-for-android/。请帮助我想从服务器进行登录检查。所以我想发出一个帖子请求请帮助我。作为新的android
开发人员我无法解决这个问题。所以请帮助我。
build.gradle(模块:应用程序):
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "com.systechdigital.realtimetrackingandmonitoring"
minSdkVersion 17
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
compile 'com.android.support:support-v4:23.1.1'
}
我的主要 Activity :
package com.systechdigital.realtimetrackingandmonitoring;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.support.design.widget.NavigationView;
import android.support.v4.view.GravityCompat;
import android.support.v4.widget.DrawerLayout;
import android.support.v7.app.AppCompatActivity;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import org.apache.http.message.BasicNameValuePair;
import org.apache.http.NameValuePair;
public class MainActivity extends AppCompatActivity
implements NavigationView.OnNavigationItemSelectedListener {
ImageView icon_image;
ImageView login_image;
EditText username_editText;
EditText password_editText;
Button remember_me_button;
Button forget_password_button;
Button sign_up_button;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
icon_image =(ImageView)findViewById(R.id.icon_imageView_id);
login_image=(ImageView)findViewById(R.id.imageView_login_id);
username_editText=(EditText)findViewById(R.id.user_login_email_id);
password_editText=(EditText)findViewById(R.id.login_password);
remember_me_button=(Button)findViewById(R.id.remember_me_id);
forget_password_button=(Button)findViewById(R.id.forget_password_id);
sign_up_button=(Button)findViewById(R.id.sign_up_button_id);
login_image.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent mainToSignUpIntent=new Intent(getApplicationContext(),SignUPActivity.class);
startActivity(mainToSignUpIntent);
ArrayList<NameValuePair> postParameters = new ArrayList<NameValuePair>();
}
});
}
@Override
public void onBackPressed() {
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
if (drawer.isDrawerOpen(GravityCompat.START)) {
drawer.closeDrawer(GravityCompat.START);
} else {
super.onBackPressed();
}
}
@SuppressWarnings("StatementWithEmptyBody")
@Override
public boolean onNavigationItemSelected(MenuItem item) {
// Handle navigation view item clicks here.
int id = item.getItemId();
if (id == R.id.nav_camera) {
// Handle the camera action
} else if (id == R.id.nav_gallery) {
} else if (id == R.id.nav_slideshow) {
} else if (id == R.id.nav_manage) {
} else if (id == R.id.nav_share) {
} else if (id == R.id.nav_send) {
}
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
drawer.closeDrawer(GravityCompat.START);
return true;
}
}
最佳答案
ArrayList<NameValuePair> postParameters = new ArrayList<NameValuePair>();
这是错误的声明,您应该提供包含诸如
之类的元素的arraylist
数据类型,而不是
NameValuePair
ArrayList<String> postParameters = new ArrayList<String>();
关于java - 我的 ArrayList<NameValuePair> 显示 NameValuePair 无法解析,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35262625/
这个问题已经有答案了: NameValuePair Error "NameValuePair cannot be resolved to a type" [duplicate] (1 个回答) 已关闭
我想知道List有什么用或 ArrayList在安卓?特别是当我们使用 AsyncTask 使用 Web 服务时 最佳答案 NameValuePair 是一个特殊的 用于表示http请求中的参数的pa
我正在使用 HTTPPost 将值发送到服务器。该脚本适用于我下面的内容。但是,如果我将名称值对更改为此,我将强制关闭: nameValuePairs.add(new BasicNameValuePa
我基本上是想通过 List到处理 Android 应用上的 POST HTTPRequest 的外部类。 String[] args = new String[]{"http://url/login"
因为 Android 22 NameValuePair 已弃用。 documentation将我发送到一篇关于 openConnection 的文章,但这就是我所做的。那么如何正确更换呢? 我知道我仍
我正在处理 double 并寻找与此等价的“ double ”... ArrayList nameValuePairs = new ArrayList(); nameValuePairs.add(ne
我想做一个嵌套的nameValuePairs像这样: List nameValuePairs = new ArrayList(1); nameValuePairs.add(new BasicNameV
在我的项目中出现错误: Error retrieving parent for item: No resource found that matches the given name 'android
我一直在关注有关如何从 Android 应用程序将数据插入数据库的在线教程,并且除了这一小部分之外一切都正常 List params = new ArrayList<>(); params.add(n
我有连接到 MySql 并将数据编码为 JSON 的 PHP 代码。稍后我会过滤它并获得特定的 JSON 对象。当我使用一个 NameValuePair 对象时它工作正常,但现在我想使用用户名和密码等
我想添加一个 Hashtable 作为 NameValuePair 的值,如下所示: name=credit_card value(这是哈希表)= {expirationDate="2013/02/1
我正在尝试将 boolean 值数组发送到 servlet。这就是我到目前为止所做的,我很困惑: HttpClient client = new DefaultHttpClient(); S
*我创建了异步任务来将一些细节发送到我的网页并进行处理 *我已成功将字符串值发送到我的页面 *但现在的问题是现在我想发送变量 markerPosition 这是 LatLng 的类型*Eclipse
是否有 Apache 实用程序接受查询字符串和一些编码并返回键映射,值 [] url 解码? 最佳答案 如果您使用的是 4.x 版本的 HttpClient,则需要使用 URLEncodedUtils
第一次在这里问问题,而且是 android 编程的新手。我正在按照在线 youtube 教程创建用户“Tonikami TV”的登录名。除了 serverRequests 类之外,应用程序的一切都很好
我想使用这个 NameValuePair 方法从我的 Android 客户端向 Web 服务器发送几个值: public void postData() { // Create a new H
现在 API 22 已弃用名称值对。如果我想实现“名称值对”接口(interface),我该怎么做。下面是我的代码 package com.example.passpass; import org.a
这是获得ArrayList的正确方法吗?按名称值? private String getValueByKey(ArrayList _list, String key) { for(NameVa
对不起我的英语。我的人给了我一个项目,我需要更改一些 POST 请求。之前用的是retrofit,但是这个项目用的是org.apache。我知道这很糟糕,但我只需要向服务器发送一个数组即可。我试了很多
这个问题在这里已经有了答案: Cannot resolve symbol NameValuePair (7 个答案) 关闭 7 年前。 我是 android 新手,我正在创建类似 this tuto
我是一名优秀的程序员,十分优秀!