在这里,我将解释整个应用程序,我从 ActionBar 样式生成器创建了 ActionBar,并将该样式添加到我的应用程序中。我正在使用 SherLockLibrary 来支持所有 android 版本。我确实应用了清单文件中的样式,例如 android:theme="@style/Theme.Customtheme"。但是在 >3.0 的版本和 <3.0 的版本上,ui 的外观和感觉是不同的,您可以在下面的图 2 和图 3 中看到。我希望所有版本的 android 具有相同的外观和感觉。我在清单中写下了我自己的风格,但没有表现出相同的外观和感觉。在我的应用程序中,有四个类第一个活动扩展了 SherlockFragmentActivity,另外两个是扩展了 SherlockListFragment 的片段。
任何人都有其他选择来做上述事情,请为我提供很好的解决方案来解决 android 版本的兼容性和外观问题。
我看了很多,我在 stackoverflow 上问了 2 次问题,但没有得到正确的答案。我可能无法提出完美的问题,所以我希望有人能给我完美的答案。提前致谢
在这里,我附上外观。图1我想要的原始样式,图2 4.2版本的视图,图3 2.3.3版本的视图
以下是清单文件
<activity
android:name="com.example.customactivity.CustomActivity"
android:label="@string/projects"
android:theme="@style/Theme.Customtheme" >
.
.
以下是堆叠标签的布局
<TabHost
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TabWidget
android:id="@android:id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0"
/>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="0"
/>
<FrameLayout
android:id="@+id/realtabcontent"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"/>
</LinearLayout>
</TabHost>
以下是主要活动代码
public class CustomActivity extends SherlockFragmentActivity {
TabHost tHost;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_custom);
tHost = (TabHost) findViewById(android.R.id.tabhost);
tHost.setup();
TabHost.OnTabChangeListener tabChangeListener = new TabHost.OnTabChangeListener() {
@Override
public void onTabChanged(String tabId) {
FragmentManager fm = getSupportFragmentManager();
ResidentialFragment resdentialFragment = (ResidentialFragment) fm.findFragmentByTag("residential");
CommercialFragment commercialFragment = (CommercialFragment) fm.findFragmentByTag("commercial");
FragmentTransaction ft = fm.beginTransaction();
if (resdentialFragment!=null) {
ft.detach(resdentialFragment);
}
/** Detaches the commercialfragment if exists */
if (commercialFragment!=null) {
ft.detach(commercialFragment);
}
/** If current tab is residential */
if(tabId.equalsIgnoreCase("residential")){
if(resdentialFragment==null){
/** Create residentialFragment and adding to fragmenttransaction */
ft.add(R.id.realtabcontent,new ResidentialFragment(), "residential");
}else{
/** Bring to the front, if already exists in the fragmenttransaction */
ft.attach(resdentialFragment);
}
}else{ /** If current tab is apple */
if(commercialFragment==null){
/** Create AppleFragment and adding to fragmenttransaction */
ft.add(R.id.realtabcontent,new CommercialFragment(), "commercial");
}else{
/** Bring to the front, if already exists in the fragmenttransaction */
ft.attach(commercialFragment);
}
}
ft.commit();
}
};
/** Setting tabchangelistener for the tab */
tHost.setOnTabChangedListener(tabChangeListener);
/** Defining tab builder for residential tab */
TabHost.TabSpec tSpecResidential = tHost.newTabSpec("residential");
tSpecResidential.setIndicator("Residential");
tSpecResidential.setContent(new DummyTabContent(getBaseContext()));
tHost.addTab(tSpecResidential);
/** Defining tab builder for commercial tab */
TabHost.TabSpec tSpecComm = tHost.newTabSpec("commercial");
tSpecComm.setIndicator("Commercial");
tSpecComm.setContent(new DummyTabContent(getBaseContext()));
tHost.addTab(tSpecComm);
}
}