setTextSize方法不适用于LayoutInflater:

时间:2019-02-27 14:39:29

标签: android android-layout textview

当我单击 textView (以下代码中未包括)时,我想实现 changeTextSize1 方法(在SettingActivity.java中)。 changeTextSize1 是用于更改finalT textView的 textsize 的方法。 但这不起作用。

SettingActivity.java

 public void changeTextSize1(View v) {

    TextView ts1 = (TextView) findViewById(R.id.textsize1);
    TextView ts2 = (TextView) findViewById(R.id.textsize2);
    TextView ts3 = (TextView) findViewById(R.id.textsize3);
    ts1.setTypeface(ts1.getTypeface(), Typeface.BOLD);
    ts2.setTypeface(ts2.getTypeface(), Typeface.NORMAL);
    ts3.setTypeface(ts3.getTypeface(), Typeface.NORMAL);

    View view = (View) getLayoutInflater().inflate(R.layout.recycler_todo, null);

    TextView finalT = (TextView) view.findViewById(R.id.finalText);
    finalT.setTextSize(22);
}

recycler_todo.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#56A2B7"
android:orientation="vertical">

<TextView
    android:id="@+id/finalText"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="25dp"
    android:layout_marginBottom="25dp"
    android:gravity="center"
    android:text="text"
    android:textSize="16sp"
    android:textColor="#ffffff"/>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="0.5dp"
    android:background="#ffffff"
    android:orientation="vertical">

</LinearLayout>

下面是更多代码。

MyAdapter.java

public MyAdapter(ArrayList<TodoList> myDataset) {
    mDataset = myDataset;
}

@Override
public MyAdapter.MyViewHolder onCreateViewHolder(ViewGroup parent,
                                               int viewType) {
    // create a new view
    LinearLayout v = (LinearLayout) LayoutInflater.from(parent.getContext())
            .inflate(R.layout.recycler_todo, parent, false);
    MyViewHolder vh = new MyViewHolder(v);
    return vh;
}

activity_main.xml

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="672dp"
    android:orientation="vertical"
    >

    <android.support.v7.widget.RecyclerView
        android:id="@+id/my_recycler_view"
        android:scrollbars="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#56A2B7">

    </android.support.v7.widget.RecyclerView>

</LinearLayout>

enter image description here

enter image description here

第一张图片:如果我单击该“ 1” TextView ...→ 第二张图片:这个句子需要更大...

需要更多代码吗?

1 个答案:

答案 0 :(得分:0)

哦,所以,首先您要在“设置”屏幕上更改项目的文本大小,并希望将其反映在适配器上。

然后,您只需要将该文本大小保存到SharedPreferences中,然后在 MyAdapter onBindViewHolder 方法中,从设置中读取文本大小,然后将其设置为textview,就这么简单。

这是个小问题,

public MyAdapter(ArrayList<TodoList> myDataset) {
    mDataset = myDataset;
}

@Override
public MyAdapter.MyViewHolder onBindViewHolder(MyAdapter.MyViewHolder holder, int position) {

    // HERE YOUR CODE GOES TO SET TEXT SIZE FROM SETTING
    holder.textview.setText(readSizeFromSharedPreference())
}