0

问题


我一直试图TextView在彼此下方放置几个 s,但我似乎无法让它工作。它们总是相互重叠,而不是放在彼此下方。

我试过什么


我试过弄乱重力(不适用于 a RelativeLayout)和各种布局参数。我得出的结论是,对我来说最好的解决方案是使用该RelativeLayout.BELOW参数。唯一的问题是我试图找到以前的 id TextView。 我使用迭代器

为 s 分配 id 。TextView看来我不能使用迭代器 - 1 算作一个 id (即使 SO 上的其他答案表明这是可行的)。我什至尝试将当前分配给TextView“previous_tv”变量以在下一次迭代中使用。

我尝试找到TextView我刚刚放置this.findViewByID的 id 和正确的迭代器值,这也不起作用。

代码


我试图弄清楚我应该为我的参数规则放置什么作为 id。这是我要参考的代码 - 编辑,根据请求放置完整代码 - :

public void onCreate(Bundle savedInstanceState) 
{
    super.onCreate(savedInstanceState);
    this.requestWindowFeature(Window.FEATURE_NO_TITLE); //Don't show application name on the top of the screen (valuable space)
    setContentView(R.layout.activity_task_play); //Set which layout file to use for this activity

    //Get the Task that was sent by TaskActivity
    this.task = (Task) this.getIntent().getSerializableExtra("TASK_OBJECT");
    //Get the Sums for this Task
    this.sums = this.task.getSums();

    //GridView setup
    this.gridview = (GridView) this.findViewById(R.id.gridView_task_play);

    ArrayAdapter<String> adapter = this.task.getArrayAdapterForGridView(this);

    this.gridview.setAdapter(adapter);

    //TextView setup
    RelativeLayout layout = (RelativeLayout) this.findViewById(R.id.activity_task_play_relative);

    for(int i = 0; i < this.sums.length; i++)
    {
        //Layout parameters
        RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT, RelativeLayout.LayoutParams.WRAP_CONTENT);
        params.addRule(RelativeLayout.CENTER_HORIZONTAL);

        //This variable counts how many times the placeholder text is skipped and a operator (+-/ etc.) is placed in the sum_text.
        //This is usefull for placing the correct placeholder for each number in the sum (a, b, c etc.)
        int times_skipped = 0; 

        TextView tv = new TextView(this);

        String sum_text = "";

        for(int j = 0; j < this.sums[i].getVariables().length; j++)
        {               
            if(this.isParsable(this.sums[i].getVariables()[j]))
            {
                sum_text += TaskPlayActivity.PLACEHOLDERS[(j - times_skipped)] + " ";
            }
            else
            {
                sum_text += this.sums[i].getVariables()[j] + " ";
                times_skipped++;
            }
        }

        if(i > 0) 
        {
            params.addRule(RelativeLayout.BELOW, i - 1);
        }
        tv.setId(i);
        tv.setText(sum_text + "= " + this.sums[i].getAnswer());
        tv.setTextColor(TaskPlayActivity.COLOURS[i]);
        tv.setTextSize(25);
        tv.setLayoutParams(params);
        layout.addView(tv);
    }
}



XML

添加了 XML。我的布局不是很好,所以很可能是故障在这里。

<RelativeLayout 
    android:id="@+id/activity_task_play_relative"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <RelativeLayout 
        android:layout_width="wrap_content"
        android:layout_height="220dip"
        android:layout_alignParentBottom="true">

        <GridView
            android:id="@+id/gridView_task_play"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:background="#EFEFEF"
            android:horizontalSpacing="1dp"
            android:numColumns="3"
            android:paddingTop="1dp"
            android:verticalSpacing="1dp" >

        </GridView>

    </RelativeLayout>

</RelativeLayout>

也欢迎任何其他建议,但我更愿意保留RelativeLayout. 提前致谢。

4

2 回答 2

1

View#setId的文档说标识符应该是一个正数,所以你应该确保不要使用零作为标识符值。

您还必须为每个 TextView 创建一个新的 LayoutParams 实例。因为您的所有 TextView 共享相同的 LayoutParams 对象,并且对该对象的更改会影响所有 TextView。

您可以使用View#generateViewId生成一个 ID 并记住最后一次迭代的 ID。

于 2013-05-10T16:26:54.610 回答
0

好像您在循环中调用此代码。在这种情况下,只需将i - 1(previous view id) 作为规则的 id。

于 2013-05-10T16:22:52.897 回答