enter image description here我正在开发一款Android应用。 动态地我创建了名称(从服务器获得),但现在我需要添加相同高度和宽度的彩色矩形以及一些textview。
我附上了我需要开发的图像。
我怎样才能做到这一点?用帆布?我觉得很难。
答案 0 :(得分:2)
对于TextView,只需添加填充和背景即可实现:) 试试这个:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:background="#BBBBBB"
tools:context="xyz.mhuy.myapplication.MainActivity">
<RelativeLayout
android:id="@+id/relativeLayout1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@android:color/black" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="HelloWorld"
android:padding="10dp"
android:textColor="#ffffff"
android:gravity=""/>
<TextView
android:id="@+id/button2"
android:padding="10dp"
android:background="#ff0000"
android:textColor="#ffffff"
android:textStyle="bold"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="next"
android:layout_alignParentRight="true"/>
</RelativeLayout>
</LinearLayout>