2012-03-14 20 views
0

私はいくつかのテストをしています。私はいくつかの助けが必要です。私はAndroidの初心者です。テキストビューの横にユーザーのスコアを投稿したい場合はどうすればよいですか?別のビューですか?私が達成したいこのAndroid:動的スコアを設定

enter image description here

私はTextViewの横にXMLでそれを配置する方法、ある意味何ですか。助けてください?私はちょうどこれについての意見が必要です。線形レイアウトの下で2つの線形レイアウト?または1つの線形レイアウトと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> 
1
//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> 
関連する問題