多级Textview中的错误

时间:2016-09-22 08:37:35

标签: java android

我在另一个ExpandableListview中添加了ExpandableListview。 我仅添加了2 TextView,但我得到了四个TextView而不是两个。

图像:

enter image description here

有人可以向我提出建议吗?

2 个答案:

答案 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 AdapterActivity传递到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)