0

我是 android 新手,我在这个链接http://code.google.com/p/android-page-curl/中找到了这个很棒的 android page curl 。我的问题是,如何添加 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!");

我的代码有问题??

谢谢..

4

1 回答 1

0

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

无论如何,从查看您的 XML 开始,对您自己提出一个简单的问题:为什么 PageCurlView 应该能够找到 TextView 元素,它不是它的子元素?

你有:

  • 相对布局
    • 页面卷曲视图
    • 线性布局
      • 文本视图

TextView 是RelativeLayout 和LinearLayout 的唯一子级。在 PageCurlView 中找不到 TextView。FindViewById() 仅下降到 ViewGroups 子项,而不是父项。

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

于 2012-08-02T03:08:40.893 回答