我对Android很新。我希望更改列表的文本颜色,嵌套在导航抽屉中。我有一个包含字符串数组和5个项目的资源文件。然后我使用ArrayAdapter填充导航抽屉,但我创建了"菜单"作为ListView。 ListView没有我可以设置的textColor属性。如何更改ListView文本颜色?
MainActivity.java
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:Get*",
"s3:Put*",
"s3:DeleteObject",
"s3:ListBucket"
],
"Resource": [
"arn:aws:s3:::my-bucket-name",
"arn:aws:s3:::my-bucket-name/*"
]
}
]
}
activity_main.xml中
public class MainActivity extends AppCompatActivity {
private String[] menuItemsForDrawer;
private DrawerLayout drawerLayout;
private ListView gpsJobcardDrawerList;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
menuItemsForDrawer = getResources().getStringArray(R.array.gps_jobcard_menu_items);
drawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout);
gpsJobcardDrawerList = (ListView) findViewById(R.id.left_drawer);
gpsJobcardDrawerList.setAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, menuItemsForDrawer));
}
}
gps_jobcard_menu.xml
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- Main Content View (Must be first child in the DrawerLayout -->
<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/dark_grey_color"/>
<!-- Navigation Drawer -->
<ListView
android:id="@+id/left_drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:choiceMode="singleChoice"
android:divider="@android:color/transparent"
android:dividerHeight="0dp"
android:background="@drawable/orange_color" />
</android.support.v4.widget.DrawerLayout>
答案 0 :(得分:0)
请勿使用android.R.layout.simple_list_item_1
制作您自己的自定义布局
<强> layout_simple_list_item.xml 强>
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="8.0dip"
android:text="Text"
android:textColor=""
android:textSize="20.0sp" />
</LinearLayout>
<强>代码强>
gpsJobcardDrawerList.setAdapter(new ArrayAdapter<String>(this, R.layout.layout_simple_list_item, menuItemsForDrawer));
答案 1 :(得分:0)
android.R.layout.simple_list_item_1
这是一个android系统布局,我想你可以通过反射提取TextView然后设置相同的参数来编辑文本的颜色。
答案 2 :(得分:0)
您使用的当前资源android.R.layout.simple_list_item_1
是一个Android资源。如果您需要更改其外观,那么您应该创建自己的资源并使用它。这就是我们这样做的方式。
创建一个xml布局说navigation_item.xml
就像这样
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="#25383C" <!-- any color you need -->
/>
并更改
gpsJobcardDrawerList.setAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, menuItemsForDrawer));
到
gpsJobcardDrawerList.setAdapter(new ArrayAdapter<String>(this, R.layout.navigation_item, menuItemsForDrawer));