我想在这样的android布局中制作边框,我该怎么做?
问问题
642 次
4 回答
3
如果您想要自定义分隔符,请在 drawable 中制作 separator.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<gradient
android:angle="90"
android:centerColor="#ffffffff"
android:endColor="#00ffffff"
android:startColor="#00ffffff" />
</shape>
然后用这个参考这个分隔符形状
<ImageView
android:id="@+id/imageView1"
android:layout_width="2dip"
android:layout_height="fill_parent"
android:layout_marginLeft="4dip"
android:layout_marginRight="4dip"
android:src="@drawable/seperator" />
结果:
于 2013-01-17T08:09:33.427 回答
1
像上面的输出图像一样显示
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#eeeeee"
android:orientation="horizontal" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="E"
android:paddingTop="5dp"
android:paddingBottom="5dp"
android:paddingLeft="15dp"
android:paddingRight="15dp"
android:background="@android:color/white"
android:layout_marginRight="5dp" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="F"
android:paddingTop="5dp"
android:paddingBottom="5dp"
android:paddingLeft="15dp"
android:paddingRight="15dp"
android:background="@android:color/white"
android:layout_marginRight="5dp" />
</LinearLayout>
于 2013-01-17T08:07:38.100 回答
0
要在 android 中创建边框,我们必须在形状中使用 stroke 标记(xml drawable)
这是我最后测试过的代码:
stroke_background.xml
<stroke android:width="1dp"
android:color="@android:color/darker_gray"/>
<solid android:color="#ffffff"/>
</shape>
您需要的布局
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:weightSum="1">
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_weight=".5"
android:background="@drawable/stroke_background">
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="E" />
</LinearLayout>
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@drawable/stroke_background"
android:layout_weight=".5"
>
<TextView
android:id="@+id/textView2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="F" />
</LinearLayout>
</LinearLayout>
结果看起来像这样..
于 2013-01-17T08:10:52.323 回答
0
Views
我认为你可以通过使用你想要的颜色来实现这一点
喜欢
<View
android:layout_height="wrap_content"
android:layout_width="1dip"
android:background="#f3f3f3"
/>
于 2013-01-17T07:57:29.137 回答