- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
我的 android 应用程序需要一个功能,该功能有一个按钮,需要根据一个 TextView
显示和隐藏。这是我的代码,我将进一步解释。
public class currentCar extends Fragment implements AsyncResponse, AdapterView.OnItemClickListener {
final String TAG = this.getClass().getName();
private ArrayList<AcceptCars> carList;
private ListView lvCurrent;
private FunDapter<AcceptCars> adapter;
SharedPreferences pref;
public currentCar() {
// Required empty public constructor
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
View v = inflater.inflate(R.layout.fragment_current_car, container, false);
ImageLoader.getInstance().init(UILConfig.config(getActivity()));
lvCurrent = (ListView) v.findViewById(R.id.lvCurrent);
pref = getActivity().getSharedPreferences("Login.conf", Context.MODE_PRIVATE);
Log.d(TAG, pref.getString("username",""));
PostResponseAsyncTask taskRead = new PostResponseAsyncTask(getActivity(), this);
taskRead.execute("http://carkila.esy.es/carkila/current.php?acceptCarOwner="+pref.getString("username",""));
return v;
}
@Override
public void processFinish(String s) {
carList = new JsonConverter<AcceptCars>().toArrayList(s, AcceptCars.class);
BindDictionary<AcceptCars> dict = new BindDictionary<AcceptCars>();
dict.addDynamicImageField(R.id.ivImg1, new StringExtractor<AcceptCars>() {
@Override
public String getStringValue(AcceptCars item, int position) {
return item.acceptImage;
}
}, new DynamicImageLoader() {
@Override
public void loadImage(String url, ImageView view) {
ImageLoader.getInstance().displayImage(url, view);
}
});
dict.addStringField(R.id.tvCarModel, new StringExtractor<AcceptCars>() {
@Override
public String getStringValue(AcceptCars item, int position) {
return "Car Model: " + item.acceptModel;
}
});
dict.addStringField(R.id.tvResDate, new StringExtractor<AcceptCars>() {
@Override
public String getStringValue(AcceptCars item, int position) {
return "Date: " + item.acceptDate;
}
});
dict.addStringField(R.id.tvResTime, new StringExtractor<AcceptCars>() {
@Override
public String getStringValue(AcceptCars item, int position) {
return "Time: " + item.acceptTime;
}
});
dict.addStringField(R.id.tvResLocation, new StringExtractor<AcceptCars>() {
@Override
public String getStringValue(AcceptCars item, int position) {
return "Location: " + item.acceptResLocation;
}
});
dict.addStringField(R.id.tvCarType, new StringExtractor<AcceptCars>() {
@Override
public String getStringValue(AcceptCars item, int position) {
return "Car Type: " + item.acceptType;
}
});
dict.addStringField(R.id.tvCapacity, new StringExtractor<AcceptCars>() {
@Override
public String getStringValue(AcceptCars item, int position) {
return "Capacity: " + item.acceptCapacity;
}
});
dict.addStringField(R.id.tvFuelType, new StringExtractor<AcceptCars>() {
@Override
public String getStringValue(AcceptCars item, int position) {
return "Fuel Type: " + item.acceptFuelType;
}
});
dict.addStringField(R.id.tvPlateNumber, new StringExtractor<AcceptCars>() {
@Override
public String getStringValue(AcceptCars item, int position) {
return "Plate Number: " + item.acceptPlateNumber;
}
});
dict.addStringField(R.id.tvPoster, new StringExtractor<AcceptCars>() {
@Override
public String getStringValue(AcceptCars item, int position) {
return "Posted by : " + item.acceptCarOwner;
}
});
dict.addStringField(R.id.tvRenter, new StringExtractor<AcceptCars>() {
@Override
public String getStringValue(AcceptCars item, int position) {
return "Rented by: "+ item.renters;
}
});
dict.addStringField(R.id.tvDestination, new StringExtractor<AcceptCars>() {
@Override
public String getStringValue(AcceptCars item, int position) {
return "Destination: " + item.acceptDestination;
}
});
dict.addStringField(R.id.tvResPrice, new StringExtractor<AcceptCars>() {
@Override
public String getStringValue(AcceptCars item, int position) {
return "Destination: " + item.acceptPrice;
}
});
dict.addStringField(R.id.tvresID, new StringExtractor<AcceptCars>() {
@Override
public String getStringValue(AcceptCars item, int position) {
return ""+ item.acceptedID;
}
});
dict.addStringField(R.id.tvstatus, new StringExtractor<AcceptCars>() {
@Override
public String getStringValue(AcceptCars item, int position) {
return "Status: "+ item.payment;
}
});
adapter = new FunDapter<>(
getActivity(), carList, R.layout.layout_rented, dict);
lvCurrent.setAdapter(adapter);
lvCurrent.setOnItemClickListener(this);
}
@Override
public void onItemClick(AdapterView<?> adapterView, View view, int i, long l) {
AcceptCars selectedCars = carList.get(i);
Intent in = new Intent(getActivity(), ownerStatus.class);
in.putExtra("cars", selectedCars);
startActivity(in);
}
}
在这个 listView
的开头,item.payment
是“未支付的”,它将转到 ownerStatus.class
public class ownerStatus extends AppCompatActivity {
TextView tvStatus, tvPaymentStatus, tvresID, tvCarModel, tvCarType, tvCapacity, tvFuelType, tvPlateNumber, tvResDate, tvResTime, tvResLocation, tvPoster, tvRenter, tvDestination, tvPrice;
ImageView ivImage;
Button btnPaid;
Button btnDone;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_owner_status);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
onButtonClick();
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
final AcceptCars Cars = (AcceptCars) getIntent().getSerializableExtra("cars");
ImageLoader.getInstance().init(UILConfig.config(ownerStatus.this));
tvCarModel = (TextView) findViewById(R.id.tvCarModel);
tvCarType = (TextView) findViewById(R.id.tvCarType);
tvCapacity = (TextView) findViewById(R.id.tvCapacity);
tvFuelType = (TextView) findViewById(R.id.tvFuelType);
tvPoster = (TextView) findViewById(R.id.tvPoster);
tvPlateNumber = (TextView) findViewById(R.id.tvPlateNumber);
tvResDate = (TextView) findViewById(R.id.tvResDate);
tvResTime = (TextView) findViewById(R.id.tvResTime);
tvResLocation = (TextView) findViewById(R.id.tvResLocation);
tvPrice = (TextView) findViewById(R.id.tvPrice);
tvDestination = (TextView) findViewById(R.id.tvDestination);
tvRenter = (TextView) findViewById(R.id.tvRenter);
tvresID = (TextView) findViewById(R.id.tvresID);
tvPaymentStatus = (TextView) findViewById(R.id.tvPaymentStatus);
tvStatus = (TextView) findViewById(R.id.tvStatus);
ivImage = (ImageView) findViewById(R.id.ivImg1);
if (Cars != null) {
tvresID.setText("" + Cars.acceptedID);
tvCarModel.setText(Cars.acceptModel);
tvCarType.setText(Cars.acceptType);
tvCapacity.setText(Cars.acceptCapacity);
tvFuelType.setText(Cars.acceptFuelType);
tvPlateNumber.setText(Cars.acceptPlateNumber);
tvResDate.setText(Cars.acceptDate);
tvResTime.setText(Cars.acceptTime);
tvResLocation.setText(Cars.acceptResLocation);
tvPoster.setText(Cars.acceptCarOwner);
tvRenter.setText(Cars.renters);
tvDestination.setText(Cars.acceptDestination);
tvPrice.setText(Cars.acceptPrice);
tvPaymentStatus.setText(Cars.payment);
tvStatus.setText(Cars.payment);
ImageLoader.getInstance().displayImage(Cars.acceptImage, ivImage);
}
}
public void onButtonClick() {
btnPaid = (Button) findViewById(R.id.btnPaid);
btnPaid.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
AlertDialog.Builder a_paid = new AlertDialog.Builder(ownerStatus.this);
a_paid.setMessage("Does the renter paid the transaction?")
.setCancelable(false)
.setPositiveButton("Yes", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
HashMap postData = new HashMap();
postData.put("acceptID", tvresID.getText().toString());
postData.put("payment", "paid");
PostResponseAsyncTask taskPaid = new PostResponseAsyncTask(ownerStatus.this, postData, false, new AsyncResponse() {
@Override
public void processFinish(String s) {
if (s.contains("success")) {
Toast.makeText(ownerStatus.this, "renter is paid", Toast.LENGTH_SHORT).show();
Intent in = new Intent(ownerStatus.this, OwnerTabs.class);
startActivity(in);
finish();
} else {
Toast.makeText(getApplicationContext(), "Failed. Zzzz ☻", Toast.LENGTH_LONG).show();
}
}
});
taskPaid.execute("http://carkila.esy.es/carkila/paid.php");
}
})
.setNegativeButton("No", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
dialogInterface.cancel();
}
});
AlertDialog alert = a_paid.create();
alert.setTitle("Payment");
alert.show();
}
});
//===================================================================================//
btnDone = (Button) findViewById(R.id.btnDone);
btnDone.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
AlertDialog.Builder a_done = new AlertDialog.Builder(ownerStatus.this);
a_done.setMessage("Is the rent is done?")
.setCancelable(false)
.setPositiveButton("Yes", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
HashMap postData2 = new HashMap();
postData2.put("acceptID", tvresID.getText().toString());
postData2.put("status", "done");
PostResponseAsyncTask task1 = new PostResponseAsyncTask(ownerStatus.this, postData2, new AsyncResponse() {
@Override
public void processFinish(String s) {
if (s.contains("success")) {
Toast.makeText(ownerStatus.this, "renter is paid", Toast.LENGTH_SHORT).show();
} else {
Toast.makeText(getApplicationContext(), "Failed. Zzzz ☻", Toast.LENGTH_LONG).show();
}
}
});
task1.execute("http://carkila.esy.es/carkila/done.php");
}
})
.setNegativeButton("No", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
dialogInterface.cancel();
}
});
AlertDialog alert = a_done.create();
alert.setTitle("Done");
alert.show();
}
});
}
}
就在这里。当 Cars.payment
未支付时,btnPaid
将显示和隐藏 btnDone
但当 Cars.payment
为支付 btnPaid
将隐藏,btnDone
现在将隐藏。希望您理解我的解释并帮助我解决问题。谢谢先生:)
代码如下: http://jsfiddle.net/t2nite/KCY8g/ 我正在使用 jquery 创建这些隐藏框。 每个框都有一些文本和一个“显示”和“隐藏”按钮。我正在尝试创建一个“显示/隐
我正在尝试做某事。如果单击一个添加 #add-conferance 然后菜单将显示.add-contact。当点击隐藏然后它显示隐藏。我也将 setTimeout 设置为 7sec,但我希望当我的鼠标
我有一个多步骤(多页?)表单,只要用户按下“下一步”或“上一步”按钮,表单字段就会通过 div 显示和隐藏。 我只想禁用第一个 div (div id="page1"class="pageform")
我有一个使用 IIS 6 和 7 的当前系统,用 ASP.NET 和 .NET 4 中的 C# 编写。 My purpose is to hide the url completely (as per
我正在建立一个网站,并有一个幻灯片。幻灯片有标题和索引,覆盖整个页面。当覆盖被激活时,标题需要消失。当覆盖层被停用时,通过单击退出按钮、缩略图链接或菜单链接,字幕必须返回。 这就是我目前所拥有的
我正在尝试为显示/隐藏功能制作简单的 jquery 代码。但我仍然做错了什么。 $(document).ready(function(){ $('.arrow').click(function
我有一个自定义对话框并使用它来代替 optionMenu。所以我希望 myDialog 表现得像菜单,即在按下菜单时显示/隐藏。我尝试了很多变体,但结果相同: 因为我为 myDialog 设置了一个
在我的项目中,我通过 ViewPager 创建我的 tabBar,如下所示: MainActivity.java mViewPager = (ViewPager) findViewById(R.id.
我目前正在使用一个 Excel 表,我将第 1-17 行分组并在单元格 B18 中写入了一个单元格值。我想知道当我在展开/折叠行时单击 +/- 符号时是否有办法更改 B18 中的值。 例如:我希望 B
我想创建一个按钮来使用 VBA 隐藏和取消隐藏特定组。我拥有的代码将隐藏或取消隐藏指定级别中的所有组: Sub Macro1() ActiveSheet.Outline.ShowLevels RowL
我是 VBA 新手。我想隐藏从任何行到工作表末尾的所有行。 我遇到的问题是我不知道如何编程以隐藏最后写入的行。 我使用下一个函数知道最后写入的单元格,但我不知道在哪里放置隐藏函数。 last = Ra
我想根据另一个字段的条件在 UI 上隐藏或更新一个字段。 例如,如果我有一个名为 Color 的字段: [PXUIField(DisplayName="Color")] [PXStringList("
这是我尝试开始收集通常不会遇到的 GCC 特殊功能。这是@jlebedev 在另一个问题中提到g++的“有效C++”选项之后, -Weffc++ This option warns about C++
我开发了一个 Flutter 应用程序,我使用了 ProgressDialog小部件 ( progress_dialog: ^1.2.0 )。首先,我展示了 ProgressDialog小部件和一些代
我需要在 API 17+ 的同一个 Activity(Fragment) 中显示/隐藏状态栏。假设一个按钮将隐藏它,另一个按钮将显示它: 节目: getActivity().getWindow().s
是否可以通过组件的 ts 代码以编程方式控制下拉列表的显示/隐藏(使用 Angular2 清楚)- https://vmware.github.io/clarity/documentation/dro
我想根据 if 函数的结果隐藏/显示 NiceScroll。 在我的html中有三个部分,从左到右逐一滚动。 我的脚本如下: var section2 = $('#section2').offset(
我有这个 jquery 代码: $(document).ready(function(){ //global vars var searchBoxes = $(".box"); var searchB
这个问题已经有答案了: Does something like jQuery.toggle(boolean) exist? (5 个回答) 已关闭 6 年前。 在 jQuery 中(我当前使用的是 1
我在这样的选择标签上使用 jQuery 的 selectMenu。 $('#ddlReport').selectmenu() 在某些情况下我想隐藏它,但我不知道如何隐藏。 这不起作用: $('#ddl
我是一名优秀的程序员,十分优秀!