如何在PageCurl中添加TextView?

时间:2012-08-02 02:53:30

标签: android textview relativelayout page-curl

我是android的新手,我在这个链接http://code.google.com/p/android-page-curl/找到了这个很棒的android页面卷曲。 我的问题是,如何添加TextView? 我试过了,但是当我尝试的时候总是强行关闭。 这是我在布局xml中的代码。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent" android:layout_height="fill_parent">
    <cv.tarie.pagecurl.PageCurlView
        android:layout_width="fill_parent" android:layout_height="fill_parent"
        android:id="@+id/dcgpagecurlPageCurlView1"/>

    <LinearLayout android:id="@+id/textlayout"
        android:layout_width="fill_parent" android:layout_height="100dp"
        android:layout_alignParentBottom="true" android:gravity="center"
        android:background="#55000000" android:padding="5dp">

        <TextView android:id="@+id/dialog" android:layout_width="fill_parent"
            android:layout_height="fill_parent" android:textSize="18dp"
            android:textColor="#FFFFFF" />

    </LinearLayout>
</RelativeLayout>

我在PageCurlView中添加了这段代码。

TextView tv = (TextView) findViewById(R.id.dialog);
tv.setText("Hello!");

我的代码有错误吗?

谢谢..

1 个答案:

答案 0 :(得分:0)

您应该提供更多信息:您在哪里准确添加了该代码;什么是logcat输出,...

无论如何,从仅查看XML开始,这是一个简单的问题: 为什么PageCurlView能够找到TextView元素,而不是它的子元素?

你有:

  • RelativeLayout的
    • PageCurlView
    • 的LinearLayout
      • 的TextView

TextView只是RelativeLayout和LinearLayout的子项。 在PageCurlView中找不到TextView是不可能的。 FindViewById()只下降到ViewGroups子系统,而不是父系。

我只是在想,你的问题可能是完全错误的。您是否尝试过询问“如何在TextViews之间切换PageCurl,而不仅仅是图像?”。答案是:阅读文档,或只是主网站的第一页。这不可能。它只能在图像之间切换。