首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >为ListView设置TypeFace

为ListView设置TypeFace
EN

Stack Overflow用户
提问于 2012-11-16 02:12:09
回答 2查看 6.1K关注 0票数 1

我有2个XML文件的列表视图。一个用于视图,另一个用于优先使用。note_list.XML是:

代码语言:javascript
复制
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:padding="10dip" >

    <Button
        android:id="@+id/allNotes_btn_refresh_list"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/all_note_refresh_list" />

    <ListView
        android:id="@android:id/list"
        android:layout_width="fill_parent"
        android:layout_height="match_parent" />

</LinearLayout>

list_otem.XML是:

代码语言:javascript
复制
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/list_lbl_id"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:visibility="gone" />

    <TextView
        android:id="@+id/list_lbl_subject"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceLarge" />

    <TextView
        android:id="@+id/list_lbl_date"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceSmall" />

</LinearLayout>

在下面的代码中,我为列表设置了适配器:

代码语言:javascript
复制
ArrayList<HashMap<String, String>> noteList;
ListView lv;
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.note_list);
    noteList = new ArrayList<HashMap<String, String>>();
    lv = getListView();

    lv.setOnItemClickListener(new OnItemClickListener() {
        public void onItemClick(AdapterView<?> parent, View view,
                int position, long id) {

            String note_id = ((TextView) view
                    .findViewById(R.id.list_lbl_id)).getText().toString();
            Intent i = new Intent(getApplicationContext(), NoteDetail.class);
            i.putExtra("note_id", note_id);
            startActivityForResult(i, 100);
        }
    });
}

public class LoadAllNotes extends AsyncTask<String, String, String> {
        @Override
        protected void onPreExecute() {
            super.onPreExecute();
            pDialog = new ProgressDialog(AllNotes.this);
            pDialog.setMessage("???? ??? ????...");
            pDialog.setIndeterminate(false);
            pDialog.setCancelable(true);
            pDialog.show();

            noteList.clear();
        }

        protected String doInBackground(String... args) {

            UserFunctions userFunctions = new UserFunctions();

            jSon = userFunctions.getAllNotes(userId);

            Log.i("AllNotes >> jSon >>", jSon.toString());

            return null;
        }

        protected void onPostExecute(String file_url) {
            pDialog.dismiss();
            try {
                if (jSon.has(KEY_SUCCESS)) {
                    String success = jSon.getString(KEY_SUCCESS);
                    if (success.equals("1")) {

                        notes = jSon.getJSONObject("notes");
                        for (int i = 0; i < notes.length(); i++) {
                            JSONObject c = notes.getJSONObject(Integer
                                    .toString(i));

                            Log.i("JSONObject c >>", c.toString());

                            String id = c.getString(KEY_NOTE_ID);
                            String subject = c.getString(KEY_NOTE_SUBJECT);
                            String date = c.getString(KEY_NOTE_DATE);

                            HashMap<String, String> map = new HashMap<String, String>();
                            map.put(KEY_NOTE_ID, id);
                            map.put(KEY_NOTE_SUBJECT, subject);
                            map.put(KEY_NOTE_DATE, date);

                            noteList.add(map);
                        }

                    }
                }
            } catch (JSONException e) {
                e.printStackTrace();
            }

            runOnUiThread(new Runnable() {

                public void run() {
                    ListAdapter adapter = new SimpleAdapter(AllNotes.this,
                            noteList, R.layout.list_item, new String[] {
                                    KEY_NOTE_ID, KEY_NOTE_SUBJECT,
                                    KEY_NOTE_DATE }, new int[] {
                                    R.id.list_lbl_id, R.id.list_lbl_subject,
                                    R.id.list_lbl_date });
                    setListAdapter(adapter);
                }
            });
        }
    }

如何在item_list.XML中为TextViews设置字体face?我在java代码中为内容视图设置了note_list。所以不能访问list_item.xml的视图。谢谢你帮我。

EN

回答 2

Stack Overflow用户

回答已采纳

发布于 2012-11-16 02:24:34

您需要重写SimpleAdaptergetView(int position, View convertView, ViewGroup parent)方法并将结果强制转换为TextView。这对于R.layout.list_item布局应该是安全的,尽管您可能需要仔细检查。

从那里开始,设置字体照常工作。

代码片段,放在SimpleAdapter的(匿名)扩展中:

代码语言:javascript
复制
Typeface mTypeface = ... // only needs to be initialised once.

@Override public View getView(int position, View convertView, ViewGroup parent) {
    View view = super.getView(position, convertView, parent);
    TextView textview = (TextView) view;
    textview.setTypeface(mTypeface);
    return textview;
}

如果,也许在将来的某个时刻,您将拥有一个由多个TextView组成的更复杂的布局,我会考虑实现您自己的ArrayAdapter扩展。有很多关于如何做到这一点的例子(也可以查看ViewHolder/RowWrapper模式),它会给你完全的控制权。

编辑:示例代码如下。

代码语言:javascript
复制
public class TypefacedSimpleAdapter extends SimpleAdapter {
    private final Typeface mTypeface;

    public TypefacedSimpleAdapter(Context context, List<? extends Map<String, ?>> data, int resource, String[] from, int[] to) {
        super(context, data, resource, from, to);
        mTypeface = Typeface.createFromAsset(context.getAssets(), /* typeface */);
    }

    @Override public View getView(int position, View convertView, ViewGroup parent) {
        View view = super.getView(position, convertView, parent);
        TextView textview = (TextView) view;
        textview.setTypeface(mTypeface);
        return textview;
    }
}

复制-粘贴上面的类,并确保根据您的要求设置type face字段。然后替换当前的SimpleAdapter;即如下所示:

代码语言:javascript
复制
ListAdapter adapter = new TypefacedSimpleAdapter(AllNotes.this,
        noteList, R.layout.list_item, new String[] {
        KEY_NOTE_ID, KEY_NOTE_SUBJECT,
        KEY_NOTE_DATE }, new int[] {
        R.id.list_lbl_id, R.id.list_lbl_subject,
        R.id.list_lbl_date }
);

请注意,我实际上并没有编译或运行任何这些代码。我将留给您来填补任何空白和/或更正。

票数 6
EN

Stack Overflow用户

发布于 2012-11-16 18:04:26

我在下面的类中添加了这个:

代码语言:javascript
复制
public class myAdapter extends SimpleAdapter {
    public myAdapter(Context context, List<HashMap<String, String>> items,
            int resource, String[] from, int[] to) {
        super(context, items, resource, from, to);
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        View view = super.getView(position, convertView, parent);

        Typeface typeFace = Typeface.createFromAsset(getAssets(),
                "fontsfolder/B Yekan.ttf");

        TextView lbl_subject = ((TextView) view
                .findViewById(R.id.list_lbl_subject));
        TextView lbl_date = ((TextView) view
                .findViewById(R.id.list_lbl_date));

        lbl_date.setTypeface(typeFace);
        lbl_subject.setTypeface(typeFace);

        return view;
    }
}

并在填写列表时按如下方式更改代码:

代码语言:javascript
复制
myAdapter adapter = new myAdapter(AllNotes.this, noteList,
        R.layout.list_item, new String[] { KEY_NOTE_ID,
                KEY_NOTE_SUBJECT, KEY_NOTE_DATE },
        new int[] { R.id.list_lbl_id,
                R.id.list_lbl_subject, R.id.list_lbl_date });
setListAdapter(adapter);

感谢@MH。寻求帮助

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/13403605

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档