Android中的动态字符串的处理

Posted sunshine_96

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android中的动态字符串的处理相关的知识,希望对你有一定的参考价值。

 

 1.效果显示

 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 {
 8     private TextView textView;
 9     @Override
10     protected void onCreate(Bundle savedInstanceState) {
11         super.onCreate(savedInstanceState);
12         setContentView(R.layout.activity_main);
13         textView = (TextView) findViewById(R.id.tv);
14         String temp = this.getString(R.string.hello);
15         String result = String.format(temp,"SASS","Android");
16         textView.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"
 3     xmlns:tools="http://schemas.android.com/tools"
 4     android:layout_width="match_parent"
 5     android:layout_height="match_parent"
 6     android:paddingBottom="@dimen/activity_vertical_margin"
 7     android:paddingLeft="@dimen/activity_horizontal_margin"
 8     android:paddingRight="@dimen/activity_horizontal_margin"
 9     android:paddingTop="@dimen/activity_vertical_margin"
10     tools:context="com.example.app2.MainActivity"
11     android:orientation="vertical">
12 
13     <TextView
14         android:id="@+id/tv"
15         android:layout_width="wrap_content"
16         android:layout_height="wrap_content"
17         />
18 
19 </LinearLayout>

 

以上是关于Android中的动态字符串的处理的主要内容,如果未能解决你的问题,请参考以下文章

Android片段中的EditText值不刷新

Android获取片段中的布局高度和宽度

Android中的动态字符串的处理

在android中动态创建选项卡并使用传入的参数加载片段

从ViewPager android替换片段

在 Android 中使用片段时处理后按