Android中的动态字符串的处理

丈夫志四海,万里犹比邻。这篇文章主要讲述Android中的动态字符串的处理相关的知识,希望能为你提供帮助。

Android中的动态字符串的处理

文章图片

 
  1.效果显示
Android中的动态字符串的处理

文章图片

  2. MainAcitivity.java
1 package com.example.app2; 2 3 import android.support.v7.app.AppCompatActivity; 4 import android.os.Bundle; 5 import android.widget.TextView; 6 7 public class MainActivity extends AppCompatActivity { 8private TextView textView; 9@Override 10protected void onCreate(Bundle savedInstanceState) { 11super.onCreate(savedInstanceState); 12setContentView(R.layout.activity_main); 13textView = (TextView) findViewById(R.id.tv); 14String temp = this.getString(R.string.hello); 15String result = String.format(temp,"SASS","Android"); 16textView.setText(result); 17} 18 }

2.activity_main.xml
1 < ?xml version="1.0" encoding="utf-8"?> 2 < LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3xmlns:tools="http://schemas.android.com/tools" 4android:layout_width="match_parent" 5android:layout_height="match_parent" 6android:paddingBottom="@dimen/activity_vertical_margin" 7android:paddingLeft="@dimen/activity_horizontal_margin" 8android:paddingRight="@dimen/activity_horizontal_margin" 9android:paddingTop="@dimen/activity_vertical_margin" 10tools:context="com.example.app2.MainActivity" 11android:orientation="vertical"> 12 13< TextView 14android:id="@+id/tv" 15android:layout_width="wrap_content" 16android:layout_height="wrap_content" 17/> 18 19 < /LinearLayout>

【Android中的动态字符串的处理】 

    推荐阅读