所以我有一些测试,我需要一些帮助,我是Android的新手,所以在这里。如果我想在textview旁边发布用户的分数,我该怎么办?这是一个单独的观点吗?我想实现这个
我的意思是,如何将它放在textview旁边的XML中。有什么帮助吗?我只需要对此有所了解。线性布局下的2个线性布局?线性布局/相对布局下的1个线性布局和1个相对布局?
答案 0 :(得分:1)
您可以尝试这样的RelativeLayout
:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:text="hi gel" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@id/textView1"
android:text="Your score" />
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_alignParentRight="true"
android:text="61.5" />
</RelativeLayout>