Android Home's favorite.xml

<?xml version="1.0" encoding="utf-8"?> <!-- Copyright (C) 2007 The Android Open Source Project Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <TextView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="78dip" android:layout_height="65dip" android:paddingTop="3dip" android:paddingBottom="3dip" android:clickable="true" android:focusable="true" android:background="@drawable/favorite_background" android:textSize="12dip" android:maxLines="1" android:ellipsize="end" android:textColor="@color/bright_text_dark_focused" android:gravity="center_horizontal|bottom" />

 

 

编译smartq7 的Android ,需要修改

android:layout_width="200dip"
android:layout_height="120dip"

 

因为Android 的所有activity 应用程序都是以Home为parent的,不做修改所有Activity 尺寸都会不对的。

你可能感兴趣的:(Android Home's favorite.xml)