2016-11-08 6 views

答えて

1

あなたの価値と "温度" のテキストを表示するには、この

使用2テキストビューを試すことができます。 RelativeLayoutを使用して、下部の温度の表示を簡単に管理できます。

<?xml version="1.0" encoding="utf-8"?> 

<RelativeLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@+id/activity_display_message" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 


    <TextView 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:id="@+id/tempValue" 
     android:textSize="25sp" 
     android:gravity="center" 
     android:text="Value"/> 

    <TextView 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:text="Temperature" 
     android:textSize="25sp" 
     android:gravity="bottom|center" 
     android:layout_below="@+id/tempValue"/> 


</RelativeLayout> 

とJavaの書き込み

TextView txtTempValue = (TextView)findViewById(R.id.tempValue); 
txtTempValue.setText(your_temp_value); 
+0

私はまた重量、加速度、速度、温度、高度、および圧力を表示しなければならないので、値(温度値)は単語(温度)の隣になければなりません。しかし、それは動作します、ありがとう!私はそれがその隣に現れるようにしようとします。 – belgarion

2

TextViewを追加し、textView.setText(your_string);を使用してください。私はあなたが現在LinearLayoutにテキストを印刷しようとしていると仮定しています。

<?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="match_parent" 
    android:orientation="vertical" 
    tools:context="com.example.myapplication.DisplayMessageActivity"> 

    <TextView 
     android:id="@+id/activity_display_message" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" /> 

    <TextView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="@string/temperature"/> 

</LinearLayout> 

コード、

TextView textView = (TextView) findViewById(R.id.activity_display_message); 
textView.setText(your_string); 
+0

感謝を設定しようとしているあなたの背景(Java)のコードを表示してください! "your_string"に何を書き込むべきですか?申し訳ありません。 – belgarion

+0

"Temperate"の上に表示したい番号です。質問のように "1337"。 –

関連する問題