我有一张空白卡片视图,需要在下面详细介绍的布局中为此cardView添加项目。
----------------------------
|image|"text here"
|image|"text here" |image|
----------------------------
我遇到的问题是所有的教程等开始谈论recycleviews等,当我只是想将项目添加到我的cardView。
任何帮助将不胜感激
答案 0 :(得分:1)
为from test_2 import *
class A():
def __init__(self):
self.key = 1
self.call_Method_B = B().Method_B(self.key)
def Method_A1(self):
print("Method_A1: ok")
def Method_A2(self):
print("Method_A2: ok")
if __name__ == '__main__':
start_A = A()
class B():
def Method_B(self,key):
self.key = key
if self.key ==1:
self.call_Method_A1 = A().Method_A1()
else:
self.call_Method_A2 = A().Method_A2()
请注意,您应该完成其他属性。
此布局用于一个项目。如果您有要显示的数据,可以使用$url = "https://api.coinmarketcap.com/v1/ticker/vertcoin/";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$data = curl_exec($ch);
curl_close($ch);
$parsed_json = json_decode($data);
$coindata = $parsed_json->{'price_usd'};
。
查看此Tutorial了解更多信息。