所以我应该显示一个时间表,每个项目都有一个带圆角的背景图像......
我无法找到如何给出我的视图(目前是TextView,但我可以改变它)背景(这是一个必须重复的模式)并给它圆角......
我能找到的就是如何给出具有坚实背景色的圆角......
有人可以帮忙吗?
编辑:backgroundimage看起来像http://www.photoshop-pack.com/tutorials/images/1145.gif
带圆角的背景图片:并非日程表中的所有项目具有相同的长度
左角+主bg +右角:bg应该重复,所以右角不会与中心bg阵容
答案 0 :(得分:3)
有些类似于
的东西<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center_horizontal"
>
<LinearLayout
android:padding="4dip"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/list_bkg_rounded"
android:gravity="center_horizontal"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="hello all how are you ? "
android:background="@drawable/back_repeat"
/>
</LinearLayout>
</LinearLayout>
我有这样的事情
答案 1 :(得分:1)
让我在这里发布我的代码 我在drawable文件夹中有back_repeat.xml
<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/repeat"
android:tileMode="repeat" />
和repeat.gif在drawable文件夹中,它是来自u r link的backgroundimage。
也是drawable文件夹中的list_bkg_rounded.xml,它是圆角边框
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<stroke android:width="1dp" android:color="#fc9700"/>
<corners android:bottomRightRadius="10dp" android:bottomLeftRadius="10dp"
android:topLeftRadius="10dp" android:topRightRadius="10dp"/>
<solid android:color="#fc9700"/>
</shape>
我的main.xml是
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center_horizontal"
>
<LinearLayout
android:padding="4dip"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/list_bkg_rounded"
android:gravity="center_horizontal"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="hello all how are you ? "
android:background="@drawable/back_repeat"
/>
</LinearLayout>
</LinearLayout>
答案 2 :(得分:0)
带圆角的背景图片:并非日程表中的所有项目具有相同的长度
左角+主bg +右角:bg应该重复,所以右角不会与中心bg阵容
你可以发布布局图片吗?