我关注此链接https://github.com/harism/android_page_curl现在我想修改curlview的大小,我已经尝试在main.xml文件中更改android:layout_width =“fill_parent”android:layout_height =“fill_parent”但它不是工作。 所以,请告诉我如何更改curlView的高度,宽度和背景。 感谢
答案 0 :(得分:0)
对于宽度和高度更改,您可以将该自定义视图放在“线性布局”中,并更改“线性布局”属性,如下所示。
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_marginRight="50dp"
android:layout_marginLeft="20dp"
android:layout_marginTop="20dp"
android:layout_marginBottom="20dp"
android:layout_weight="1"
android:orientation="vertical" >
<com.mobinius.hungama.curl.CurlView
android:id="@+id/curl"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</LinearLayout>
用于背景色
mCurlView.setBackgroundColor(0xFF202830);