如何在 java 中使用空格或空格替代?
xml
<ListView
android:id="@+id/bus schedules"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</ListView>
给我错误的代码
findViewById(R.id.bus schedules)
编辑
我在用着。
int panelId = getResources().getIdentifier(Selection.toLowerCase(),
"id,drawable", getActivity().getPackageName());
所以 my必须与无效语句中Selection
的相同, @+/id
否则my是字符串(字符串数组)的显示。return
0
Selection
编辑2
我正在使用TextView
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.menufragment, container, false);
int i = getArguments().getInt(SELECTION_NUMBER);
String Selection = getResources().getStringArray(R.array.Selection_array)[i];
int panelId = getResources().getIdentifier(Selection.toLowerCase(),
"id", getActivity().getPackageName());
rootView.findViewById(panelId);
getActivity().setTitle(drawerSelection);
return rootView;
}
SELECTION_NUMBER
is fromselectItem(int position)
所以它返回上面的位置编号 shit 获取该编号并在中找到字符串array
并尝试将其与中的某些内容匹配R.java
怎么去上班