2016-12-11 17 views
1

コードは次のとおりです。テキストビュー "現在地"と "ユーザーアドレス"がデバイスで実行されているときにアプリケーション画面に表示されません。 。私のレイアウトコードは次のとおりです。 アプリケーション画面にテキストビューが表示されない(Android)

<RelativeLayout 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:paddingTop="@dimen/_40dp" 
     android:paddingLeft="@dimen/_10dp" 
     android:paddingRight="@dimen/_10dp"             
     android:background="@color/colorPrimary" 
     android:paddingBottom="@dimen/_40dp" 
     > 
      <TextView 
       android:layout_width="fill_parent" android:id="@+id/current" 
       android:layout_height="wrap_content" android:layout_marginLeft="@dimen/_30dp" 
       android:textSize="15dp" android:textColor="@color/background" 
       tools:text="Current Location" /> 

      <TextView 
       android:layout_width="fill_parent" android:id="@+id/user_current_addr" android:layout_marginTop="@dimen/_10dp" 
       android:layout_height="wrap_content" android:layout_marginLeft="@dimen/_30dp" 
       android:layout_centerVertical="true" android:layout_below="@+id/current" 
       android:textSize="20dp" android:textColor="@color/background" 
       tools:text="User Address" /> 

    </RelativeLayout> 
    <FrameLayout 
     android:id="@+id/child_fragment_container" 
     android:layout_width="match_parent" 
     android:layout_height="0dp" android:background="@color/background" 
     android:layout_weight="1" /> 
</LinearLayout> 

断片コードは

public View onCreateView(LayoutInflater inflater, ViewGroup container, 
Bundle savedInstanceState) 
{ 
// Inflate the layout for this fragment 
View view = inflater.inflate(R.layout.fragment_my_location, container, false); 
return view; 
} 

で、画面がある:あなたのコードのLayout Screen

+0

私たち[チャットでこのディスカッションを続行しましょう](http://chat.stackoverflow.com/rooms/130348/discussion-between-umair-iqbal-and-opiatefuchs) –

答えて

3

ベース、あなたのTextViewsをしようとしている文字列を設定するために不足しています使用(android:text)。今すぐあなたはtools:text="Current Location"を使用しています。プレビュー画面にはテキストのみが表示されます。

+0

くそ....これは正しい.....時々私はこのような何かを監督しているのだろうか?..propsイーグルアイベニー – Opiatefuchs

+0

@Opiatefuchs、はい絶対に正しい。 –

+0

私の首にバーチャルスラップ.....:O) – Opiatefuchs

関連する問題