0
所以我有一些測試,我需要一些幫助,我是Android的新手,所以在這裏。如果我想將用戶的分數發佈到textview旁邊,我應該怎麼做?這是一個單獨的觀點?我想要實現這個Android:放置動態分數
我的意思是,如何將其放置在旁邊的TextView XML。請幫忙嗎?我只需要對此有意見。線性佈局下2個線性佈局?或1線性佈局和1線性佈局/相對佈局下的相對佈局?
所以我有一些測試,我需要一些幫助,我是Android的新手,所以在這裏。如果我想將用戶的分數發佈到textview旁邊,我應該怎麼做?這是一個單獨的觀點?我想要實現這個Android:放置動態分數
我的意思是,如何將其放置在旁邊的TextView XML。請幫忙嗎?我只需要對此有意見。線性佈局下2個線性佈局?或1線性佈局和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>
//text.xml
<?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="wrap_content"
android:background="#ffffff"
>
<TextView
android:textStyle="bold"
android:id="@+id/hitext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_marginLeft="10dp"
android:text="Hi Gel,"
android:textColor="#000000" />
<TextView
android:textStyle="bold"
android:layout_below="@+id/hitext"
android:id="@+id/scoretext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_marginLeft="10dp"
android:text="Your LifeStyle score is:"
android:textColor="#000000" />
<TextView
android:textStyle="bold"
android:layout_marginRight="10dp"
android:id="@+id/score"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignBaseline="@+id/scoretext"
android:text="61.5"
android:textSize="50dp"
android:textColor="#000000" />
</RelativeLayout>