选项卡图标和文本均使用 android 设计支持库
Tab icon and text both using android design support library
]1]1我使用了 android 设计支持 tablayout,我在选项卡上同时获得了图标和文本。我使用了 customtabview 来垂直对齐图标和文本。我想更改颜色selected/unselected 时的图标和文本。
我为不同的选项卡图标制作了选择器文件..但问题是当我运行项目时第一个默认选项卡未被选中我希望它们被默认选中..如果我去其他选项卡,然后滑动回到第一个选项卡,它工作得很好..主要问题是我无法选择第一个选项卡片段..请帮助我,因为我被困了过去 2 天..我不想使用任何库github
MainActivity.java
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.os.Bundle;
import android.support.design.widget.TabLayout;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentPagerAdapter;
import android.support.v4.view.ViewPager;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import java.util.ArrayList;
import java.util.List;
import android.os.Bundle;
import android.support.design.widget.TabLayout;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentPagerAdapter;
import android.support.v4.view.ViewPager;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.view.LayoutInflater;
import android.widget.TextView;
import java.util.ArrayList;
import java.util.List;
public class MainActivity extends AppCompatActivity {
private Toolbar toolbar;
private TabLayout tabLayout;
private ViewPager viewPager;
private int[] tabIcons = {
R.drawable.image1,
R.drawable.image2,
R.drawable.image3
};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
viewPager = (ViewPager) findViewById(R.id.viewpager);
setupViewPager(viewPager);
tabLayout = (TabLayout) findViewById(R.id.tabs);
tabLayout.setupWithViewPager(viewPager);
setupTabIcons();
}
private void setupTabIcons() {
TextView tabOne = (TextView) LayoutInflater.from(this).inflate(R.layout.custom_tab, null);
tabOne.setText("ONE");
tabOne.setCompoundDrawablesWithIntrinsicBounds(0, R.drawable.image1, 0, 0);
tabLayout.getTabAt(0).setCustomView(tabOne);
TextView tabTwo = (TextView) LayoutInflater.from(this).inflate(R.layout.custom_tab, null);
tabTwo.setText("TWO");
tabTwo.setCompoundDrawablesWithIntrinsicBounds(0, R.drawable.image2, 0, 0);
tabLayout.getTabAt(1).setCustomView(tabTwo);
TextView tabThree = (TextView) LayoutInflater.from(this).inflate(R.layout.custom_tab, null);
tabThree.setText("THREE");
tabThree.setCompoundDrawablesWithIntrinsicBounds(0, R.drawable.image3, 0, 0);
tabLayout.getTabAt(2).setCustomView(tabThree);
}
private void setupViewPager(ViewPager viewPager) {
ViewPagerAdapter adapter = new ViewPagerAdapter(getSupportFragmentManager());
adapter.addFrag(new OneFragment(), "ONE");
adapter.addFrag(new TwoFragment(), "TWO");
adapter.addFrag(new ThreeFragment(), "THREE");
viewPager.setAdapter(adapter);
}
class ViewPagerAdapter extends FragmentPagerAdapter {
private final List<Fragment> mFragmentList = new ArrayList<>();
private final List<String> mFragmentTitleList = new ArrayList<>();
public ViewPagerAdapter(FragmentManager manager) {
super(manager);
}
@Override
public Fragment getItem(int position) {
return mFragmentList.get(position);
}
@Override
public int getCount() {
return mFragmentList.size();
}
public void addFrag(Fragment fragment, String title) {
mFragmentList.add(fragment);
mFragmentTitleList.add(title);
}
@Override
public CharSequence getPageTitle(int position) {
return mFragmentTitleList.get(position);
}
}
}
image1.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/x1" android:state_selected="true" />
<item android:drawable="@drawable/x2" />
</selector>
像上面一样为三个不同的图像创建三个文件。
custom_tab.xml
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/tab"
android:textColor="@color/selector"
android:textSize="@dimen/tab_label"
android:fontFamily="@string/font_fontFamily_medium"/>
selector.xml 文本
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_selected="true"
android:color="#fe5d55" /> <!-- pressed -->
<item android:state_pressed="true"
android:color="#fe5d55" /> <!-- focused -->
<item android:color="#000000" /> <!-- default -->
</selector>
有人能帮忙吗?
未选中是什么意思。
你能分享一下你正在努力实现的目标以及你现在所处的位置吗?
我不推荐你的方法。它做了很多不需要解决你的问题的事情。我建议使用 TabLayout class 中的图标和文本,并设置您的图标(带状态的可绘制对象)和文本。
或者,如果需要,甚至是自定义布局,但使用 TabLayout 中的 text1 和图标。你这样做有什么问题吗?
更新..
尝试以下方法:
IconTextTabLayout.java:
package example.customtabs;
import android.content.Context;
import android.support.annotation.NonNull;
import android.support.design.widget.TabLayout;
import android.support.v4.view.PagerAdapter;
import android.util.AttributeSet;
import sample.customtabs.example.com.customtabs.R;
public class IconTextTabLayout extends TabLayout {
public IconTextTabLayout(Context context) {
super(context);
}
public IconTextTabLayout(Context context, AttributeSet attrs) {
super(context, attrs);
}
public IconTextTabLayout(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
@Override
public void setTabsFromPagerAdapter(@NonNull PagerAdapter adapter) {
this.removeAllTabs();
int i = 0;
for (int count = adapter.getCount(); i < count; ++i) {
this.addTab(this.newTab().setCustomView(R.layout.custom_tab)
.setIcon(YourIcons[i])
.setText(adapter.getPageTitle(i)));
}
}
}
custom_tab.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ImageView
android:id="@android:id/icon"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<TextView
android:id="@android:id/text1"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
在您的 activity xml 中使用 IconTextTabLayout。喜欢:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<example.customtabs.IconTextTabLayout
android:id="@+id/sliding_tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabMode="scrollable"/>
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="0px"
android:layout_weight="1"
android:background="@android:color/white"/>
</LinearLayout>
此外,在您的 activity 中将查看寻呼机设置为它,例如:
IconTextTabLayout tabLayout = (IconTextTabLayout) findViewById(R.id.sliding_tabs);
tabLayout.setupWithViewPager(viewPager);
覆盖 viewpager 适配器中的 getPageTitle 以提供标题。
@Override
public CharSequence getPageTitle(int position) {
return TITLES[i];
}
此外,如果您愿意,您也可以通过编写 returns 可绘制对象的方法从适配器获取图标,就像 getPageTitle
方法一样。那是可选的。只是设计问题。
--
YourIcons[]
= 这是一组可绘制对象。
在您的情况下 - xml 个文件,包含选定的和 non-selected 个图像...
而不是自定义由@Abhilash 回答指定的TabLayout
,只需在下面的代码
中添加一行即tabOne.setSelected(true);
TextView tabOne = (TextView) LayoutInflater.from(this).inflate(R.layout.custom_tab, null);
tabOne.setText("ONE");
tabOne.setCompoundDrawablesWithIntrinsicBounds(0, R.drawable.image1, 0, 0);
tabOne.setSelected(true); //This will make your tab by default selected
tabLayout.getTabAt(0).setCustomView(tabOne);
我为不同的选项卡图标制作了选择器文件..但问题是当我运行项目时第一个默认选项卡未被选中我希望它们被默认选中..如果我去其他选项卡,然后滑动回到第一个选项卡,它工作得很好..主要问题是我无法选择第一个选项卡片段..请帮助我,因为我被困了过去 2 天..我不想使用任何库github
MainActivity.java
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.os.Bundle;
import android.support.design.widget.TabLayout;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentPagerAdapter;
import android.support.v4.view.ViewPager;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import java.util.ArrayList;
import java.util.List;
import android.os.Bundle;
import android.support.design.widget.TabLayout;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentPagerAdapter;
import android.support.v4.view.ViewPager;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.view.LayoutInflater;
import android.widget.TextView;
import java.util.ArrayList;
import java.util.List;
public class MainActivity extends AppCompatActivity {
private Toolbar toolbar;
private TabLayout tabLayout;
private ViewPager viewPager;
private int[] tabIcons = {
R.drawable.image1,
R.drawable.image2,
R.drawable.image3
};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
viewPager = (ViewPager) findViewById(R.id.viewpager);
setupViewPager(viewPager);
tabLayout = (TabLayout) findViewById(R.id.tabs);
tabLayout.setupWithViewPager(viewPager);
setupTabIcons();
}
private void setupTabIcons() {
TextView tabOne = (TextView) LayoutInflater.from(this).inflate(R.layout.custom_tab, null);
tabOne.setText("ONE");
tabOne.setCompoundDrawablesWithIntrinsicBounds(0, R.drawable.image1, 0, 0);
tabLayout.getTabAt(0).setCustomView(tabOne);
TextView tabTwo = (TextView) LayoutInflater.from(this).inflate(R.layout.custom_tab, null);
tabTwo.setText("TWO");
tabTwo.setCompoundDrawablesWithIntrinsicBounds(0, R.drawable.image2, 0, 0);
tabLayout.getTabAt(1).setCustomView(tabTwo);
TextView tabThree = (TextView) LayoutInflater.from(this).inflate(R.layout.custom_tab, null);
tabThree.setText("THREE");
tabThree.setCompoundDrawablesWithIntrinsicBounds(0, R.drawable.image3, 0, 0);
tabLayout.getTabAt(2).setCustomView(tabThree);
}
private void setupViewPager(ViewPager viewPager) {
ViewPagerAdapter adapter = new ViewPagerAdapter(getSupportFragmentManager());
adapter.addFrag(new OneFragment(), "ONE");
adapter.addFrag(new TwoFragment(), "TWO");
adapter.addFrag(new ThreeFragment(), "THREE");
viewPager.setAdapter(adapter);
}
class ViewPagerAdapter extends FragmentPagerAdapter {
private final List<Fragment> mFragmentList = new ArrayList<>();
private final List<String> mFragmentTitleList = new ArrayList<>();
public ViewPagerAdapter(FragmentManager manager) {
super(manager);
}
@Override
public Fragment getItem(int position) {
return mFragmentList.get(position);
}
@Override
public int getCount() {
return mFragmentList.size();
}
public void addFrag(Fragment fragment, String title) {
mFragmentList.add(fragment);
mFragmentTitleList.add(title);
}
@Override
public CharSequence getPageTitle(int position) {
return mFragmentTitleList.get(position);
}
}
}
image1.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/x1" android:state_selected="true" />
<item android:drawable="@drawable/x2" />
</selector>
像上面一样为三个不同的图像创建三个文件。
custom_tab.xml
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/tab"
android:textColor="@color/selector"
android:textSize="@dimen/tab_label"
android:fontFamily="@string/font_fontFamily_medium"/>
selector.xml 文本
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_selected="true"
android:color="#fe5d55" /> <!-- pressed -->
<item android:state_pressed="true"
android:color="#fe5d55" /> <!-- focused -->
<item android:color="#000000" /> <!-- default -->
</selector>
有人能帮忙吗?
未选中是什么意思。 你能分享一下你正在努力实现的目标以及你现在所处的位置吗?
我不推荐你的方法。它做了很多不需要解决你的问题的事情。我建议使用 TabLayout class 中的图标和文本,并设置您的图标(带状态的可绘制对象)和文本。 或者,如果需要,甚至是自定义布局,但使用 TabLayout 中的 text1 和图标。你这样做有什么问题吗?
更新..
尝试以下方法:
IconTextTabLayout.java:
package example.customtabs;
import android.content.Context;
import android.support.annotation.NonNull;
import android.support.design.widget.TabLayout;
import android.support.v4.view.PagerAdapter;
import android.util.AttributeSet;
import sample.customtabs.example.com.customtabs.R;
public class IconTextTabLayout extends TabLayout {
public IconTextTabLayout(Context context) {
super(context);
}
public IconTextTabLayout(Context context, AttributeSet attrs) {
super(context, attrs);
}
public IconTextTabLayout(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
@Override
public void setTabsFromPagerAdapter(@NonNull PagerAdapter adapter) {
this.removeAllTabs();
int i = 0;
for (int count = adapter.getCount(); i < count; ++i) {
this.addTab(this.newTab().setCustomView(R.layout.custom_tab)
.setIcon(YourIcons[i])
.setText(adapter.getPageTitle(i)));
}
}
}
custom_tab.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ImageView
android:id="@android:id/icon"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<TextView
android:id="@android:id/text1"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
在您的 activity xml 中使用 IconTextTabLayout。喜欢:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<example.customtabs.IconTextTabLayout
android:id="@+id/sliding_tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabMode="scrollable"/>
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="0px"
android:layout_weight="1"
android:background="@android:color/white"/>
</LinearLayout>
此外,在您的 activity 中将查看寻呼机设置为它,例如:
IconTextTabLayout tabLayout = (IconTextTabLayout) findViewById(R.id.sliding_tabs);
tabLayout.setupWithViewPager(viewPager);
覆盖 viewpager 适配器中的 getPageTitle 以提供标题。
@Override
public CharSequence getPageTitle(int position) {
return TITLES[i];
}
此外,如果您愿意,您也可以通过编写 returns 可绘制对象的方法从适配器获取图标,就像 getPageTitle
方法一样。那是可选的。只是设计问题。
--
YourIcons[]
= 这是一组可绘制对象。
在您的情况下 - xml 个文件,包含选定的和 non-selected 个图像...
而不是自定义由@Abhilash 回答指定的TabLayout
,只需在下面的代码
tabOne.setSelected(true);
TextView tabOne = (TextView) LayoutInflater.from(this).inflate(R.layout.custom_tab, null);
tabOne.setText("ONE");
tabOne.setCompoundDrawablesWithIntrinsicBounds(0, R.drawable.image1, 0, 0);
tabOne.setSelected(true); //This will make your tab by default selected
tabLayout.getTabAt(0).setCustomView(tabOne);