android.widget.ListView.setRotationY()方法的使用及代码示例

x33g5p2x  于2022-01-23 转载在 其他  
字(2.1k)|赞(0)|评价(0)|浏览(166)

本文整理了Java中android.widget.ListView.setRotationY()方法的一些代码示例,展示了ListView.setRotationY()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ListView.setRotationY()方法的具体详情如下:
包路径:android.widget.ListView
类名称:ListView
方法名:setRotationY

ListView.setRotationY介绍

暂无

代码示例

代码示例来源:origin: li2/learning-android-open-source

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.rotating_list);
  //FrameLayout container = (LinearLayout) findViewById(R.id.container);
  mEnglishList = (ListView) findViewById(R.id.list_en);
  mFrenchList = (ListView) findViewById(R.id.list_fr);
  // Prepare the ListView
  final ArrayAdapter<String> adapterEn = new ArrayAdapter<String>(this,
      android.R.layout.simple_list_item_1, LIST_STRINGS_EN);
  // Prepare the ListView
  final ArrayAdapter<String> adapterFr = new ArrayAdapter<String>(this,
      android.R.layout.simple_list_item_1, LIST_STRINGS_FR);
  mEnglishList.setAdapter(adapterEn);
  mFrenchList.setAdapter(adapterFr);
  mFrenchList.setRotationY(-90f);
  Button starter = (Button) findViewById(R.id.button);
  starter.setOnClickListener(new View.OnClickListener() {
    public void onClick(View v) {
      flipit();
    }
  });
}

代码示例来源:origin: qiubiteme/android_api_demos

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.rotating_list);
  //FrameLayout container = (LinearLayout) findViewById(R.id.container);
  mEnglishList = (ListView) findViewById(R.id.list_en);
  mFrenchList = (ListView) findViewById(R.id.list_fr);
  // Prepare the ListView
  final ArrayAdapter<String> adapterEn = new ArrayAdapter<>(this,
      android.R.layout.simple_list_item_1, LIST_STRINGS_EN);
  // Prepare the ListView
  final ArrayAdapter<String> adapterFr = new ArrayAdapter<>(this,
      android.R.layout.simple_list_item_1, LIST_STRINGS_FR);
  mEnglishList.setAdapter(adapterEn);
  mFrenchList.setAdapter(adapterFr);
  mFrenchList.setRotationY(-90f);
  Button starter = (Button) findViewById(R.id.button);
  starter.setOnClickListener(new View.OnClickListener() {
    public void onClick(View v) {
      flipit();
    }
  });
}

相关文章

ListView类方法