簡體   English   中英

更改Android的ListView textSize

[英]Change ListView textSize for Android

我想更改列表視圖的文字大小,但是我不是一個好的編碼員

我一直嘗試,但是不可能

我想變大字體請幫幫我

[ http://imgur.com/a/IPc2u][1]

這是我的代碼;

Activicty.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="-24dp"
android:textSize="26sp"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.haziranonalti.MainActivity">


<ListView
    android:layout_width="match_parent"
    android:id="@+id/Listview"
    android:headerDividersEnabled="false"
    android:layout_height="match_parent"
    android:dividerHeight="4px"
    android:padding="0dp"
    android:textSize="26sp"
    android:layout_alignParentTop="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true" />


MainActivity.java

public class MainActivity extends AppCompatActivity {
ListView listView;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    listView = (ListView) findViewById(R.id.Listview);
    final String[] values = new String[]{"Deneme", "Deneme2", "Deneme3","Deneme4","Deneme5","Deneme6"};
    ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
            android.R.layout.activity_list_item, android.R.id.text1, values);
            listView.setAdapter(adapter);
            listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
        @Override
        public void onItemClick(AdapterView<?> parent, View view,
                                int position, long id) {
            if (position == 0) {
                Intent myintent = new Intent(view.getContext(), Main2Activity.class);
                startActivityForResult(myintent, 0);
            }
            if (position == 1) {
                Intent myintent = new Intent(view.getContext(), Main3Activity.class);
                startActivityForResult(myintent, 1);
            }
            if (position == 2) {
                Intent myintent = new Intent(view.getContext(), Main4Activity.class);
                startActivityForResult(myintent, 2);
            }
            if (position == 3) {
                Intent myintent = new Intent(view.getContext(), Main5Activity.class);
                startActivityForResult(myintent, 3);
            }
            if (position == 4) {
                Intent myintent = new Intent(view.getContext(), Main6Activity.class);
                startActivityForResult(myintent, 4);
            }
            if (position == 5) {
                Intent myintent = new Intent(view.getContext(), Main7Activity.class);
                startActivityForResult(myintent, 5);

將布局參數更改為simple_list_item_1

ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
android.R.layout.simple_list_item_1, android.R.id.text1, values);

或者,您可以在布局目錄中創建一個新的布局文件,並使用它代替:

custom_layout.xml

<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="26dp" />

然后使用自定義布局:

ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
android.R.layout.custom_layout, android.R.id.text1, values);

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM