我在另一个ExpandableListview
中添加了ExpandableListview
。
我仅添加了2 TextView
,但我得到了四个TextView
而不是两个。
图像:
有人可以向我提出建议吗?
答案 0 :(得分:0)
在你的适配器中试试这个:
<style>
pre {
padding: 5px;
background-color: black;
color: white;
}
</style>
<p>
This is an example of a code block
</p>
<pre><code>
public function exampleCode() {
// this is where your code goes
}
</code></pre>
答案 1 :(得分:0)
很难在没有看到您的代码的情况下帮助您,但您可能会TextView
意外地将4 Adapter
个Activity
传递到MyAdapter myAdapter = new MyAdapter(TextViewArray, getContext())
。
TextViewArray
TextView
中有getGroupCount()
个。{/ p>
这将由您的适配器中的public int getGroupCount() {
return groups.size();
}
是否返回您传递的数组的正确大小来支持。
def addVectors((angle1, length1), (angle2, length2)):
x = math.sin(angle1) * length1 + math.sin(angle2) * length2
y = math.cos(angle1) * length1 + math.cos(angle2) * length2
length = math.hypot(x, y)
angle = 0.5 * math.pi - math.atan2(y, x)
return (angle, length)